diff options
author | eric thul <thul.eric@gmail.com> | 2016-06-12 15:17:44 -0400 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2016-06-12 15:17:44 -0400 |
commit | 531c751fe5593750a377db38bcfaf9a5383ac661 (patch) | |
tree | 935b5f17cc29bee58e27b474fe604a3257b7fc63 /package.json | |
parent | 7243be70a2163be2230a5f2739768137305a24ef (diff) | |
download | purs-loader-531c751fe5593750a377db38bcfaf9a5383ac661.tar.gz purs-loader-531c751fe5593750a377db38bcfaf9a5383ac661.tar.zst purs-loader-531c751fe5593750a377db38bcfaf9a5383ac661.zip |
Reduce building of PureScript module map
Resolves #59 and resolves #60
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 | }, |