diff options
author | eric thul <thul.eric@gmail.com> | 2015-12-20 22:11:16 -0500 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2015-12-20 22:11:16 -0500 |
commit | 2e2da2be94720a739c595ec179a7ed49480ce753 (patch) | |
tree | 9b1b4763ca5e05d9211fec771df09ec29fb9fb34 /package.json | |
parent | 94cc1cdd03b9c2115813a698b1e4337bce894321 (diff) | |
download | purs-loader-2e2da2be94720a739c595ec179a7ed49480ce753.tar.gz purs-loader-2e2da2be94720a739c595ec179a7ed49480ce753.tar.zst purs-loader-2e2da2be94720a739c595ec179a7ed49480ce753.zip |
Fixing compiler warnings
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package.json b/package.json index b1ae011..0080d32 100644 --- a/package.json +++ b/package.json | |||
@@ -10,11 +10,11 @@ | |||
10 | }, | 10 | }, |
11 | "scripts": { | 11 | "scripts": { |
12 | "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", | 12 | "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", |
13 | "build:compile": "./node_modules/.bin/pulp build -o build", | 13 | "build:compile": "pulp build -o build", |
14 | "build:docs": "./node_modules/.bin/pulp docs", | 14 | "build:docs": "pulp docs", |
15 | "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", | 15 | "build:package": "webpack --progress --colors --profile --bail", |
16 | "build:watch": "./node_modules/.bin/pulp -w build -o build", | 16 | "build:watch": "pulp -w build -o build", |
17 | "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json", | 17 | "build:json": "webpack --progress --colors --profile --bail --json > index.json", |
18 | "prepublish": "npm run-script build" | 18 | "prepublish": "npm run-script build" |
19 | }, | 19 | }, |
20 | "files": [ | 20 | "files": [ |