Alexey Velikiy
7 years ago
committed by
GitHub
7 changed files with 58 additions and 47 deletions
@ -1,8 +1,9 @@
|
||||
{ |
||||
"presets": [ |
||||
"es2015" |
||||
], |
||||
"plugins": [ |
||||
"transform-runtime" |
||||
] |
||||
} |
||||
{ |
||||
"presets": [ |
||||
["env", { |
||||
"targets": { |
||||
"node": "6.14" |
||||
} |
||||
}] |
||||
] |
||||
} |
@ -0,0 +1,10 @@
|
||||
# Node.js 6.14 build |
||||
|
||||
If you want to use old version of Node.js, then do: |
||||
|
||||
``` |
||||
cd server |
||||
npm run 6-14-install |
||||
npm run 6-14-build |
||||
npm run 6-14-start |
||||
``` |
@ -1,3 +1,4 @@
|
||||
var base = require('./webpack.base.conf'); |
||||
|
||||
module.exports = base; |
||||
base.mode = 'production'; |
||||
module.exports = base; |
||||
|
Loading…
Reference in new issue