From 2e2da2be94720a739c595ec179a7ed49480ce753 Mon Sep 17 00:00:00 2001 From: eric thul Date: Sun, 20 Dec 2015 22:11:16 -0500 Subject: Fixing compiler warnings --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index b1ae011..0080d32 100644 --- a/package.json +++ b/package.json @@ -10,11 +10,11 @@ }, "scripts": { "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", - "build:compile": "./node_modules/.bin/pulp build -o build", - "build:docs": "./node_modules/.bin/pulp docs", - "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", - "build:watch": "./node_modules/.bin/pulp -w build -o build", - "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json", + "build:compile": "pulp build -o build", + "build:docs": "pulp docs", + "build:package": "webpack --progress --colors --profile --bail", + "build:watch": "pulp -w build -o build", + "build:json": "webpack --progress --colors --profile --bail --json > index.json", "prepublish": "npm run-script build" }, "files": [ -- cgit v1.2.3 From 63d6a244462d050e119bde54a7063bae8a17e987 Mon Sep 17 00:00:00 2001 From: eric thul Date: Fri, 25 Dec 2015 18:41:33 -0500 Subject: Splitting PSC functionality into a separate plugin The loader creates shim modules that reference their corresponding PureScript module that is bundled by the PureScript webpack plugin, which invokes `psc` and `psc-bundle`. Resolves #31 and resolves #32 --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 0080d32..3bcd03f 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,10 @@ }, "scripts": { "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", - "build:compile": "pulp build -o build", + "build:compile": "pulp build -o build --force", "build:docs": "pulp docs", "build:package": "webpack --progress --colors --profile --bail", - "build:watch": "pulp -w build -o build", + "build:watch": "pulp -w build -o build --force", "build:json": "webpack --progress --colors --profile --bail --json > index.json", "prepublish": "npm run-script build" }, @@ -21,7 +21,6 @@ "index.js" ], "devDependencies": { - "pulp": "^4.3.0", "webpack": "^1.8.4" }, "dependencies": { -- cgit v1.2.3 From 9764d2a7d5e6d9cf081dcbc162dac01f95d452b3 Mon Sep 17 00:00:00 2001 From: eric thul Date: Fri, 25 Dec 2015 19:16:21 -0500 Subject: Updating example --- package.json | 1 - 1 file changed, 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 3bcd03f..13d4c6c 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,6 @@ "dependencies": { "async": "^1.3.0", "chalk": "^1.1.0", - "glob": "^5.0.3", "loader-utils": "^0.2.6" } } -- cgit v1.2.3