Browse Source
Merge pull request #7 from valeriangalliat/fix-build-script
Fix build script
master
Feross Aboukhadijeh
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
package.json
|
@ -60,7 +60,7 @@ |
|
|
"url": "git://github.com/feross/thanks.git" |
|
|
"url": "git://github.com/feross/thanks.git" |
|
|
}, |
|
|
}, |
|
|
"scripts": { |
|
|
"scripts": { |
|
|
"build": "mkdir dist && babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js", |
|
|
"build": "mkdir -p dist && babel src/cmd.js > dist/cmd.js && chmod +x dist/cmd.js", |
|
|
"prepublish": "npm run build", |
|
|
"prepublish": "npm run build", |
|
|
"test": "standard && npm run build && ./dist/cmd.js --no-open" |
|
|
"test": "standard && npm run build && ./dist/cmd.js --no-open" |
|
|
} |
|
|
} |
|
|