From 7e7ed5ca934fdedce991c53592e6fb25494443fa Mon Sep 17 00:00:00 2001 From: Sebastian Werner Date: Wed, 14 Jun 2017 10:34:10 +0200 Subject: [PATCH] Fixed broken scripts - this should now again contain our edge binary --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cbda2a0..64b9c15 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "clean": "rimraf lib/* bin/*", "test": "npm run prepublish && jest", "lint-staged": "lint-staged", - "prescript": "npm run clean && rollup --config rollup.config.js", - "prepublish": "npm run prescript && npm run clean && prepublish", + "prescript": "rimraf bin/* && rollup --config rollup.config.js", + "prepublish": "rimraf lib/* && prepublish", "release": "release-it --github.release --npm.publish --non-interactive", "release:minor": "release-it --github.release --npm.publish --non-interactive --increment minor", "release:major": "release-it --github.release --npm.publish --non-interactive --increment major"