diff options
author | eric <thul.eric@gmail.com> | 2016-06-12 16:06:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-12 16:06:34 -0400 |
commit | 27638f63256b6d38745eef251b3327536766e7c3 (patch) | |
tree | 75e135abd95c9fee60ef9d9ba7d35440fd2c1ddf /package.json | |
parent | 7243be70a2163be2230a5f2739768137305a24ef (diff) | |
parent | 0b853815ef14d35cedebc2c7806fd2f9ff9d5ab5 (diff) | |
download | purs-loader-27638f63256b6d38745eef251b3327536766e7c3.tar.gz purs-loader-27638f63256b6d38745eef251b3327536766e7c3.tar.zst purs-loader-27638f63256b6d38745eef251b3327536766e7c3.zip |
Merge pull request #61 from ethul/topic/issues
Reduce building of PureScript module map
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package.json b/package.json index 5fc5a7f..6c276ce 100644 --- a/package.json +++ b/package.json | |||
@@ -2,15 +2,15 @@ | |||
2 | "name": "purs-loader", | 2 | "name": "purs-loader", |
3 | "version": "2.0.0-rc.0", | 3 | "version": "2.0.0-rc.0", |
4 | "description": "A webpack loader for PureScript.", | 4 | "description": "A webpack loader for PureScript.", |
5 | "main": "index.js", | 5 | "main": "lib/index.js", |
6 | "files": [ | 6 | "files": [ |
7 | "LICENSE", | 7 | "LICENSE", |
8 | "README.md", | 8 | "README.md", |
9 | "index.js", | 9 | "src", |
10 | "src/index.js" | 10 | "lib" |
11 | ], | 11 | ], |
12 | "scripts": { | 12 | "scripts": { |
13 | "build": "babel src/index.js -o index.js", | 13 | "build": "babel src --out-dir lib", |
14 | "prepublish": "npm run build", | 14 | "prepublish": "npm run build", |
15 | "test": "echo \"Error: no test specified\" && exit 1" | 15 | "test": "echo \"Error: no test specified\" && exit 1" |
16 | }, | 16 | }, |