Skip to content

Commit 88458dd

Browse files
authored
Merge pull request #10 from monkeyInShell/feature-bin-www-suffix
delete bin/www file suffix
2 parents e4b2486 + 509d715 commit 88458dd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bin/www.js bin/www

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/**
2-
* Created by ink on 2018/3/31.
3-
*/
1+
#!/usr/bin/env node
42
if (process.env.NODE_ENV === 'local') {
53
//node运行时生效,同样也会去读.babelrc,plugins不会覆盖,会concat生效
64
//webpack生效的配置是.babelrc

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"scripts": {
55
"fix": "sh ./eslint.sh",
6-
"start": "nodemon ./bin/www.js",
6+
"start": "nodemon ./bin/www",
77
"clean": "sh ./clean.sh",
88
"prebuild": "npm run clean && babel bin --out-dir dist/bin &&cross-env BABEL_ENV=node babel client --out-dir dist/client --copy-files && babel server --out-dir dist/server --copy-files",
99
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",

0 commit comments

Comments
 (0)