Update to beta.5 with scoped packages 👻 (#6654)
* Update to beta.5 with scoped packages * update to released version * allow node 9 [skip ci]
This commit is contained in:
parent
690d6465d8
commit
0e2a249746
@ -37,9 +37,9 @@ let envOpts = {
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
comments: false,
|
comments: false,
|
||||||
presets: [
|
presets: [
|
||||||
["env", envOpts],
|
["@babel/env", envOpts],
|
||||||
"stage-0",
|
"@babel/stage-0",
|
||||||
"flow"
|
"@babel/flow"
|
||||||
],
|
],
|
||||||
env: {
|
env: {
|
||||||
cov: {
|
cov: {
|
||||||
|
|||||||
@ -113,7 +113,7 @@ function webpackBuild() {
|
|||||||
// their project.json (or a ".babelrc" file). We need to ignore
|
// their project.json (or a ".babelrc" file). We need to ignore
|
||||||
// those as we're using our own Babel options.
|
// those as we're using our own Babel options.
|
||||||
babelrc: false,
|
babelrc: false,
|
||||||
presets: ["env"],
|
presets: ["@babel/env"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -125,7 +125,7 @@ function webpackBuild() {
|
|||||||
// their project.json (or a ".babelrc" file). We need to ignore
|
// their project.json (or a ".babelrc" file). We need to ignore
|
||||||
// those as we're using our own Babel options.
|
// those as we're using our own Babel options.
|
||||||
babelrc: false,
|
babelrc: false,
|
||||||
presets: ["env", "stage-0"],
|
presets: ["@babel/env", "@babel/stage-0"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
20
package.json
20
package.json
@ -10,16 +10,16 @@
|
|||||||
"test": "make test"
|
"test": "make test"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@babel/cli": "7.0.0-beta.5",
|
||||||
|
"@babel/core": "7.0.0-beta.5",
|
||||||
|
"@babel/preset-env": "7.0.0-beta.5",
|
||||||
|
"@babel/preset-flow": "7.0.0-beta.5",
|
||||||
|
"@babel/preset-stage-0": "7.0.0-beta.5",
|
||||||
|
"@babel/register": "7.0.0-beta.5",
|
||||||
"async": "^1.5.0",
|
"async": "^1.5.0",
|
||||||
"babel-cli": "7.0.0-beta.3",
|
"babel-eslint": "^8.0.1",
|
||||||
"babel-core": "7.0.0-beta.3",
|
"babel-loader": "8.0.0-beta.0",
|
||||||
"babel-eslint": "8.0.0-alpha.15",
|
|
||||||
"babel-loader": "7.1.1",
|
|
||||||
"babel-plugin-istanbul": "^4.1.4",
|
"babel-plugin-istanbul": "^4.1.4",
|
||||||
"babel-preset-env": "7.0.0-beta.3",
|
|
||||||
"babel-preset-flow": "7.0.0-beta.3",
|
|
||||||
"babel-preset-stage-0": "7.0.0-beta.3",
|
|
||||||
"babel-register": "7.0.0-beta.3",
|
|
||||||
"babylon": "7.0.0-beta.30",
|
"babylon": "7.0.0-beta.30",
|
||||||
"browserify": "^13.1.1",
|
"browserify": "^13.1.1",
|
||||||
"bundle-collapser": "^1.2.1",
|
"bundle-collapser": "^1.2.1",
|
||||||
@ -32,7 +32,7 @@
|
|||||||
"eslint-plugin-prettier": "^2.2.0",
|
"eslint-plugin-prettier": "^2.2.0",
|
||||||
"flow-bin": "^0.53.1",
|
"flow-bin": "^0.53.1",
|
||||||
"gulp": "^3.9.0",
|
"gulp": "^3.9.0",
|
||||||
"gulp-babel": "^7.0.0",
|
"gulp-babel": "^8.0.0-beta.0",
|
||||||
"gulp-newer": "^1.0.0",
|
"gulp-newer": "^1.0.0",
|
||||||
"gulp-plumber": "^1.0.1",
|
"gulp-plumber": "^1.0.1",
|
||||||
"gulp-rename": "^1.2.2",
|
"gulp-rename": "^1.2.2",
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"webpack-stream": "^4.0.0"
|
"webpack-stream": "^4.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 4.x <= 8.x",
|
"node": ">= 4.x <= 9.x",
|
||||||
"npm": ">= 2.x <= 5.x",
|
"npm": ">= 2.x <= 5.x",
|
||||||
"yarn": ">=0.27.5 || >=1.0.0-20170811"
|
"yarn": ">=0.27.5 || >=1.0.0-20170811"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
--reporter dot --ui tdd --timeout 10000 --compilers js:babel-register
|
--reporter dot --ui tdd --timeout 10000 --compilers js:@babel/register
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user