Choose one: is this a bug report or feature request?
class Test {
testFun() {
return 0;
}
}
{
"babel-preset-es2015": "7.0.0-alpha.10",
}
I used babel-preset-es2015 7.0.0-alpha.10
when I compile Test.js
compile error "path.get(...).arrowFunctionToExpression is not a function while parsing"
Hey @acklj1! We really appreciate you taking the time to report an issue. The collaborators
on this project attempt to help as many people as possible, but we're a limited number of volunteers,
so it's possible this won't be addressed swiftly.
If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack
community that typically always has someone willing to help. You can sign-up here
for an invite.
Seems to be a regression from #5677.
Could you please provide the stack trace?
I think it's a bug.
I use "babel-preset-es2015": "7.0.0-alpha.9".
compile class Test, who have a function named "testFun", no problem
but when I used 7.0.0-alpha.10, compile error "path.get(...).arrowFunctionToExpression is not a function while parsing".
when I used 7.0.0-alpha.10, if class Test's function
testFun() {
return 0;
} // have problem
testFun=function() {
return 0;
} // no problem
when I used 7.0.0-alpha.10, if class Test's function's name is constructor(only constructor), no problem.
constructor() {
return 0;
} // no problem
Sorry, I'm not very good at English.
I think 7.0.0-alpha.10
"path.get("callee").arrowFunctionToExpression();"
Influenced class's function(this bug)
Stack Trace:
TypeError: path.arrowFunctionToExpression is not a function
at PluginPass.ArrowFunctionExpression (node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:11:14)
at newFn (node_modules/babel-core/node_modules/babel-traverse/lib/visitors.js:276:21)
at NodePath._call (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:76:18)
at NodePath.call (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:48:17)
at NodePath.visit (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:105:12)
at TraversalContext.visitQueue (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:150:16)
at TraversalContext.visitSingle (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:108:19)
at TraversalContext.visit (node_modules/babel-core/node_modules/babel-traverse/lib/context.js:192:19)
at Function.traverse.node (node_modules/babel-core/node_modules/babel-traverse/lib/index.js:114:17)
at NodePath.visit (node_modules/babel-core/node_modules/babel-traverse/lib/path/context.js:115:19)
@xtuc the PR that removed shadow functions, removed methods on path such as arrowFunctionToExpression. This means there is an old version of plugins like babel-plugin-transform-es2015-arrow-functions that is running against a newer version of babel-traverse that removed those methods. Not sure why this is the case yet though. Although it might be that other bug I found, hopefully the next release fixes this..
This is likely the opposite, you're using the new preset with an older babel-core.
Repro:
git clone --depth 1 [email protected]:twbs/bootstrap.git && cd bootstrap
yarn && yarn run js-compile
Babel deps tree
โโ [email protected]
โ โโ babel-core@^6.24.1
โ โโ babel-polyfill@^6.23.0
โ โโ babel-register@^6.24.1
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โโ [email protected]
โ โโ babel-code-frame@^6.22.0
โ โโ babel-generator@^6.24.1
โ โโ babel-helpers@^6.24.1
โ โโ babel-messages@^6.23.0
โ โโ babel-register@^6.24.1
โ โโ babel-runtime@^6.22.0
โ โโ babel-template@^6.24.1
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-traverse@^6.24.1
โ โ โโ babel-types@^6.24.1
โ โโ babel-traverse@^6.24.1
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.22.0
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-types@^6.24.1
โ โโ babel-types@^6.24.1
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โโ [email protected]
โ โโ babel-code-frame@^6.22.0
โ โโ babel-traverse@^6.23.1
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.22.0
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-types@^6.24.1
โ โโ babel-types@^6.23.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โโ [email protected]
โ โโ babel-messages@^6.23.0
โ โโ babel-runtime@^6.22.0
โ โโ babel-types@^6.24.1
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-runtime@^6.22.0
โ โโ babel-template@^6.24.1
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-traverse@^6.24.1
โ โ โโ babel-types@^6.24.1
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.22.0
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-types@^6.24.1
โ โโ [email protected]
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โโ [email protected]
โโ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.10
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.10
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.10
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.10
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-core@^6.24.1
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-code-frame@^6.16.0
โ โโ babel-runtime@^6.18.0
โ โโ babel-types@^6.19.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
If you're using a 7.0 alpha preset, you need to use the 7.0 alpha babel-core/cli too
@loganfsmyth Oops yeah that's what I meant - if you have any 6.x packages they may not be compatible (and that PR shows it)
Can confirm downgrading babel-preset-es2015 to ^6 works for my case.
What's the top level package.json look like @silverwind? It should be a preset at 6.x and babel-cli/core/loader at 6.x or both at 7.x-alpha
https://github.com/twbs/bootstrap/blob/5f493cfc74c3def557a189eca9e47dfd02084e09/package.json#L78-L81
No idea why they use v7 just for the preset though.
Yeah that's really weird.. definetely not what we intended.. ๐
"babel-cli": "7.0.0-alpha.7",
"babel-preset-es2015": "7.0.0-alpha.7"
"babel-cli": "^6",
"babel-preset-es2015": "^6"
EDIT: during alpha, we will try to republish all the packages in sync so they can all be the same version number (at least for the ones in the monorepo)
Using a semver range on something marked alpha is a hugely bad idea
Yeah it should be pinned. Should we be rethinking peerDeps on babel-core? I'm actually surprised it has been working for that long
I don't have a firm enough grasp of just how peerdeps work, so it's hard to answer. At the very least, the plugins/presets could absolutely validate the Babel version.
"devDependencies": {
"babel-core": "7.0.0-alpha.10",
"babel-cli": "7.0.0-alpha.10",
"babel-plugin-static-fs": "^1.1.0",
"babel-plugin-version-inline": "^1.0.0",
"babel-preset-es2015": "^7.0.0-alpha.10",
"babel-preset-es2016": "^7.0.0-alpha.10",
"babel-preset-es2017": "^7.0.0-alpha.10",
"babel-preset-react": "^7.0.0-alpha.10",
"babel-preset-stage-0": "^7.0.0-alpha.10",
"babel-preset-stage-1": "^7.0.0-alpha.10",
"babel-preset-stage-2": "^7.0.0-alpha.10",
"babel-preset-stage-3": "^7.0.0-alpha.10",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chalk": "^1.1.3",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"minimist": "^1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
}
still "path.get(...).arrowFunctionToExpression is not a function while parsing"
when "babel-preset-es2015": "7.0.0-alpha.9", no problem
@acklj1 [email protected] is unfortunately the version that uses babel-core@6. I don't think we've currently published a release of babelify that will work with Babel 7.x-alpha
I've run into a similar problem, in my case babel-plugin-transform-es2015-arrow-functions was trying to use a stable version of babel-traverse, so I had to install the alpha version by myself.
Here's the workaround I've found to get it working:
~/web/personal/random-utilities master* โก
โฏ npm run test:jest
> [email protected] test:jest /Users/alexxnica/web/personal/random-utilities
> jest --env=node --no-cache
FAIL src/__tests__/sum.test.js
โ Test suite failed to run
TypeError: /Users/alexxnica/web/personal/random-utilities/src/__tests__/sum.test.js: path.arrowFunctionToExpression is not a function
at PluginPass.ArrowFunctionExpression (node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:11:14)
at newFn (node_modules/babel-traverse/lib/visitors.js:276:21)
at NodePath._call (node_modules/babel-traverse/lib/path/context.js:76:18)
at NodePath.call (node_modules/babel-traverse/lib/path/context.js:48:17)
at NodePath.visit (node_modules/babel-traverse/lib/path/context.js:105:12)
at TraversalContext.visitQueue (node_modules/babel-traverse/lib/context.js:150:16)
at TraversalContext.visitMultiple (node_modules/babel-traverse/lib/context.js:103:17)
at TraversalContext.visit (node_modules/babel-traverse/lib/context.js:190:19)
at Function.traverse.node (node_modules/babel-traverse/lib/index.js:114:17)
at NodePath.visit (node_modules/babel-traverse/lib/path/context.js:115:19)
Test Suites: 1 failed, 1 total
Tests: 0 total
Snapshots: 0 total
Time: 5.595s
Ran all test suites.
~/web/personal/random-utilities master* โก 9s
โฏ npm i --no-save babel-traverse@next
+ [email protected]
removed 11 packages and updated 2 packages in 10.692s
~/web/personal/random-utilities master* โก 11s
โฏ npm run test:jest
> [email protected] test:jest /Users/alexxnica/web/personal/random-utilities
> jest --env=node --no-cache
PASS src/__tests__/sum.test.js (6.446s)
โ adds 1 + 2 to equal 3 (7ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 6.506s
Ran all test suites.
You definetely shouldn't have to install traverse explicitly - something that is using babel-{core/cli/loader} is on 6.x.
This isn't a bug per se, just that the other ecosystem packages already updated to babel-core 7.x (and it wasn't an issue earlier probably since we never made any other breaking changes before)
Solutions: need to update other packages like gulp, jest, etc to also have alpha versions.. and on the babel side we need to figure out a better error message if you try to use a plugin with an incompatible babel-core version?
I have fixed โPluginPass.ArrowFunctionExpressionโ error by replacing โ=>โ with a function!
Now I got no error!
Ok all the issues seem to be with using an older babel-core and newer preset (or vice-versa), will close.
We'll need to figure out a way to determine compat with a versioning thing (to throw if it's not the same or compat to a babel-core version)
You sure that is the issue @hzoo ? I am running same version of both of them, and I am still getting the: path.arrowFunctionToExpression is not a function error.
Even with the same versions, I had to use "function", instead of "=>" on my test file. That is not doable for my whole codebase.
I'm getting this error with the following deps.
"babel-cli": "^7.0.0-beta.1",
"babel-jest": "^21.0.2",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.1",
"babel-preset-env": "^2.0.0-beta.1",
"babel-preset-react": "^7.0.0-beta.1",
Can you run yarn list or npm list?
Now I'm getting a different error.
Here is the error
yarn test v1.0.2
$ jest
FAIL ./test.js
โ Test suite failed to run
Cannot find module 'fbjs/lib/warning' from 'ReactNoopUpdateQueue.js'
at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:192:17)
at Object.<anonymous> (node_modules/react/lib/ReactNoopUpdateQueue.js:13:15)
Test Suites: 1 failed, 1 total
Tests: 0 total
Snapshots: 0 total
Time: 0.817s
Ran all test suites.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Here is my
package.json
{
"name": "wtf",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"babel-cli": "^7.0.0-beta.1",
"babel-jest": "^21.0.2",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.1",
"babel-preset-env": "^2.0.0-beta.1",
"babel-preset-react": "^7.0.0-beta.1",
"jest": "^21.1.0"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}
And here is
yarn list
yarn list v1.0.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ acorn@^4.0.4
โโ [email protected]
โโ [email protected]
โ โโ co@^4.6.0
โ โโ json-stable-stringify@^1.0.1
โโ [email protected]
โ โโ kind-of@^3.0.2
โ โโ longest@^1.0.1
โ โโ repeat-string@^1.5.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ color-convert@^1.9.0
โโ [email protected]
โ โโ micromatch@^2.1.5
โ โโ normalize-path@^2.0.0
โโ [email protected]
โ โโ default-require-extensions@^1.0.0
โโ [email protected]
โโ [email protected]
โ โโ delegates@^1.0.0
โ โโ readable-stream@^2.0.6
โโ [email protected]
โ โโ sprintf-js@~1.0.2
โโ [email protected]
โ โโ arr-flatten@^1.0.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ lodash@^4.14.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ chokidar@^1.6.1
โ โโ commander@^2.8.1
โ โโ convert-source-map@^1.1.0
โ โโ fs-readdir-recursive@^1.0.0
โ โโ glob@^7.0.0
โ โโ lodash@^4.2.0
โ โโ output-file-sync@^2.0.0
โ โโ slash@^1.0.0
โ โโ source-map@^0.5.0
โ โโ v8flags@^3.0.0
โโ [email protected]
โ โโ [email protected]
โ โโ chalk@^1.1.3
โ โโ [email protected]
โ โ โโ ansi-styles@^2.2.1
โ โ โโ escape-string-regexp@^1.0.2
โ โ โโ has-ansi@^2.0.0
โ โ โโ strip-ansi@^3.0.0
โ โ โโ supports-color@^2.0.0
โ โโ esutils@^2.0.2
โ โโ js-tokens@^3.0.2
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ chalk@^2.0.0
โ โ โโ esutils@^2.0.2
โ โ โโ js-tokens@^3.0.0
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ jsesc@^2.5.1
โ โ โโ lodash@^4.2.0
โ โ โโ source-map@^0.5.0
โ โ โโ trim-right@^1.0.1
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ lodash@^4.2.0
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ debug@^3.0.1
โ โ โโ globals@^10.0.0
โ โ โโ invariant@^2.2.0
โ โ โโ lodash@^4.2.0
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.2.0
โ โ โโ to-fast-properties@^2.0.0
โ โโ [email protected]
โ โโ [email protected]
โ โโ convert-source-map@^1.1.0
โ โโ debug@^3.0.1
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ json5@^0.5.0
โ โโ lodash@^4.2.0
โ โโ micromatch@^2.3.11
โ โโ resolve@^1.3.2
โ โโ source-map@^0.5.0
โโ [email protected]
โ โโ babel-messages@^6.23.0
โ โโ babel-runtime@^6.26.0
โ โโ babel-types@^6.26.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.17.4
โ โ โโ to-fast-properties@^1.0.3
โ โโ detect-indent@^4.0.0
โ โโ jsesc@^1.3.0
โ โโ lodash@^4.17.4
โ โโ source-map@^0.5.6
โ โโ [email protected]
โ โโ trim-right@^1.0.1
โโ babel-helper-builder-binary-assignment-operator-visitor@7.0.0-beta.0
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.2.0
โ โ โโ to-fast-properties@^2.0.0
โ โโ esutils@^2.0.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ lodash@^4.2.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ lodash@^4.2.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โ โโ chalk@^2.0.0
โ โ โโ esutils@^2.0.2
โ โ โโ js-tokens@^3.0.0
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ lodash@^4.2.0
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ debug@^3.0.1
โ โ โโ globals@^10.0.0
โ โ โโ invariant@^2.2.0
โ โ โโ lodash@^4.2.0
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.2.0
โ โ โโ to-fast-properties@^2.0.0
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-plugin-istanbul@^4.0.0
โ โโ babel-preset-jest@^21.0.2
โโ [email protected]
โ โโ babel-runtime@^6.22.0
โโ [email protected]
โโ [email protected]
โ โโ find-up@^2.1.0
โ โโ istanbul-lib-instrument@^1.7.5
โ โโ test-exclude@^4.1.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-beta.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ lodash@^4.2.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ regexpu-core@^4.0.2
โโ [email protected]
โ โโ babel-helper-builder-binary-assignment-operator-visitor@7.0.0-beta.0
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ babel-helper-regex@^6.26.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ lodash@^4.17.4
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.17.4
โ โ โโ to-fast-properties@^1.0.3
โ โโ regexpu-core@^4.1.3
โ โโ [email protected]
โโ [email protected]
โ โโ core-js@^2.4.0
โ โโ regenerator-runtime@^0.11.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ babel-plugin-transform-es2015-block-scoped-functions@7.0.0-beta.0
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ babel-plugin-transform-unicode-property-regex@^2.0.5
โ โโ browserslist@^2.4.0
โ โโ invariant@^2.2.2
โ โโ semver@^5.3.0
โโ [email protected]
โ โโ babel-plugin-jest-hoist@^21.0.2
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ core-js@^2.4.0
โ โโ find-cache-dir@^1.0.0
โ โโ home-or-tmp@^3.0.0
โ โโ lodash@^4.2.0
โ โโ mkdirp@^0.5.1
โ โโ pirates@^3.0.1
โ โโ source-map-support@^0.4.2
โโ [email protected]
โ โโ core-js@^2.4.0
โ โโ regenerator-runtime@^0.11.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ lodash@^4.2.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ chalk@^2.0.0
โ โ โโ esutils@^2.0.2
โ โ โโ js-tokens@^3.0.0
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ debug@^3.0.1
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ globals@^10.0.0
โ โโ invariant@^2.2.0
โ โโ lodash@^4.2.0
โโ [email protected]
โ โโ esutils@^2.0.2
โ โโ lodash@^4.2.0
โ โโ to-fast-properties@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ tweetnacl@^0.14.3
โโ [email protected]
โโ [email protected]
โ โโ inherits@~2.0.0
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ balanced-match@^1.0.0
โ โโ [email protected]
โโ [email protected]
โ โโ expand-range@^1.8.1
โ โโ preserve@^0.2.0
โ โโ repeat-element@^1.1.2
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ caniuse-lite@^1.0.30000718
โ โโ electron-to-chromium@^1.3.18
โโ [email protected]
โ โโ node-int64@^0.4.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ align-text@^0.1.3
โ โโ lazy-cache@^1.0.3
โโ [email protected]
โ โโ ansi-styles@^3.1.0
โ โโ escape-string-regexp@^1.0.5
โ โโ supports-color@^4.0.0
โโ [email protected]
โ โโ anymatch@^1.3.0
โ โโ async-each@^1.0.0
โ โโ fsevents@^1.0.0
โ โโ glob-parent@^2.0.0
โ โโ inherits@^2.0.1
โ โโ is-binary-path@^1.0.0
โ โโ is-glob@^2.0.0
โ โโ path-is-absolute@^1.0.0
โ โโ readdirp@^2.0.0
โโ [email protected]
โโ [email protected]
โ โโ string-width@^1.0.1
โ โโ strip-ansi@^3.0.1
โ โโ wrap-ansi@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ color-name@^1.1.1
โโ [email protected]
โโ [email protected]
โ โโ delayed-stream@~1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ fbjs@^0.8.9
โ โโ loose-envify@^1.3.1
โ โโ object-assign@^4.1.1
โโ [email protected]
โ โโ lru-cache@^4.0.1
โ โโ shebang-command@^1.2.0
โ โโ which@^1.2.9
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ assert-plus@^1.0.0
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ strip-bom@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ repeating@^2.0.0
โโ [email protected]
โโ [email protected]
โ โโ jsbn@~0.1.0
โโ [email protected]
โโ [email protected]
โ โโ iconv-lite@~0.4.13
โ โโ [email protected]
โโ [email protected]
โ โโ prr@~0.0.0
โโ [email protected]
โ โโ is-arrayish@^0.2.1
โโ [email protected]
โโ [email protected]
โ โโ esprima@^3.1.3
โ โโ [email protected]
โ โโ estraverse@^4.2.0
โ โโ esutils@^2.0.2
โ โโ optionator@^0.8.1
โ โโ source-map@~0.5.6
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ merge@^1.1.3
โโ [email protected]
โ โโ cross-spawn@^5.0.1
โ โโ get-stream@^3.0.0
โ โโ is-stream@^1.1.0
โ โโ npm-run-path@^2.0.0
โ โโ p-finally@^1.0.0
โ โโ signal-exit@^3.0.0
โ โโ strip-eof@^1.0.0
โโ [email protected]
โ โโ is-posix-bracket@^0.1.0
โโ [email protected]
โ โโ fill-range@^2.1.0
โโ [email protected]
โ โโ ansi-styles@^3.2.0
โ โโ jest-diff@^21.1.0
โ โโ jest-get-type@^21.0.2
โ โโ jest-matcher-utils@^21.1.0
โ โโ jest-message-util@^21.1.0
โ โโ jest-regex-util@^21.1.0
โโ [email protected]
โโ [email protected]
โ โโ is-extglob@^1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ bser@^2.0.0
โโ [email protected]
โ โโ core-js@^1.0.0
โ โโ [email protected]
โ โโ isomorphic-fetch@^2.1.1
โ โโ loose-envify@^1.0.0
โ โโ object-assign@^4.1.0
โ โโ promise@^7.1.1
โ โโ setimmediate@^1.0.5
โ โโ ua-parser-js@^0.7.9
โโ [email protected]
โโ [email protected]
โ โโ glob@^7.0.3
โ โโ minimatch@^3.0.3
โโ [email protected]
โ โโ is-number@^2.1.0
โ โโ isobject@^2.0.0
โ โโ randomatic@^1.1.3
โ โโ repeat-element@^1.1.2
โ โโ repeat-string@^1.5.2
โโ [email protected]
โ โโ commondir@^1.0.1
โ โโ make-dir@^1.0.0
โ โโ pkg-dir@^2.0.0
โโ [email protected]
โ โโ locate-path@^2.0.0
โโ [email protected]
โโ [email protected]
โ โโ for-in@^1.0.1
โโ [email protected]
โโ [email protected]
โ โโ asynckit@^0.4.0
โ โโ combined-stream@^1.0.5
โ โโ mime-types@^2.1.12
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ nan@^2.3.0
โ โโ node-pre-gyp@^0.6.36
โโ [email protected]
โ โโ fstream@^1.0.0
โ โโ inherits@2
โ โโ minimatch@^3.0.0
โโ [email protected]
โ โโ graceful-fs@^4.1.2
โ โโ inherits@~2.0.0
โ โโ mkdirp@>=0.5 0
โ โโ rimraf@2
โโ [email protected]
โ โโ aproba@^1.0.3
โ โโ console-control-strings@^1.0.0
โ โโ has-unicode@^2.0.0
โ โโ object-assign@^4.1.0
โ โโ signal-exit@^3.0.0
โ โโ string-width@^1.0.1
โ โโ strip-ansi@^3.0.1
โ โโ wide-align@^1.1.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ assert-plus@^1.0.0
โโ [email protected]
โ โโ glob-parent@^2.0.0
โ โโ is-glob@^2.0.0
โโ [email protected]
โ โโ is-glob@^2.0.0
โโ [email protected]
โ โโ fs.realpath@^1.0.0
โ โโ inflight@^1.0.4
โ โโ inherits@2
โ โโ minimatch@^3.0.4
โ โโ once@^1.3.0
โ โโ path-is-absolute@^1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ async@^1.4.0
โ โโ [email protected]
โ โโ optimist@^0.6.1
โ โโ source-map@^0.4.4
โ โโ [email protected]
โ โ โโ amdefine@>=0.0.4
โ โโ uglify-js@^2.6
โโ [email protected]
โโ [email protected]
โ โโ ajv@^4.9.1
โ โโ har-schema@^1.0.5
โโ [email protected]
โ โโ ansi-regex@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ whatwg-encoding@^1.0.1
โโ [email protected]
โ โโ assert-plus@^0.2.0
โ โโ [email protected]
โ โโ jsprim@^1.2.2
โ โโ sshpk@^1.7.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ once@^1.3.0
โ โโ wrappy@1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ loose-envify@^1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ binary-extensions@^1.0.0
โโ [email protected]
โโ [email protected]
โ โโ builtin-modules@^1.0.0
โโ [email protected]
โ โโ ci-info@^1.0.0
โโ [email protected]
โโ [email protected]
โ โโ is-primitive@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ number-is-nan@^1.0.0
โโ [email protected]
โ โโ number-is-nan@^1.0.0
โโ [email protected]
โ โโ is-extglob@^1.0.0
โโ [email protected]
โ โโ kind-of@^3.0.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ node-fetch@^1.0.1
โ โโ whatwg-fetch@>=0.10.0
โโ [email protected]
โโ [email protected]
โ โโ async@^2.1.4
โ โโ fileset@^2.0.2
โ โโ istanbul-lib-coverage@^1.1.1
โ โโ istanbul-lib-hook@^1.0.7
โ โโ istanbul-lib-instrument@^1.8.0
โ โโ istanbul-lib-report@^1.1.1
โ โโ istanbul-lib-source-maps@^1.2.1
โ โโ istanbul-reports@^1.1.2
โ โโ js-yaml@^3.7.0
โ โโ mkdirp@^0.5.1
โ โโ once@^1.4.0
โโ [email protected]
โโ [email protected]
โ โโ append-transform@^0.4.0
โโ [email protected]
โ โโ babel-generator@^6.18.0
โ โโ babel-template@^6.16.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-traverse@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ babylon@^6.18.0
โ โ โโ lodash@^4.17.4
โ โโ babel-traverse@^6.18.0
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.26.0
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ babylon@^6.18.0
โ โ โโ debug@^2.6.8
โ โ โโ globals@^9.18.0
โ โ โโ invariant@^2.2.2
โ โ โโ lodash@^4.17.4
โ โโ babel-types@^6.18.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.17.4
โ โ โโ to-fast-properties@^1.0.3
โ โโ babylon@^6.18.0
โ โโ [email protected]
โ โโ [email protected]
โ โโ istanbul-lib-coverage@^1.1.1
โ โโ semver@^5.3.0
โ โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ istanbul-lib-coverage@^1.1.1
โ โโ mkdirp@^0.5.1
โ โโ path-parse@^1.0.5
โ โโ supports-color@^3.1.2
โ โโ [email protected]
โ โโ has-flag@^1.0.0
โโ [email protected]
โ โโ debug@^2.6.3
โ โโ istanbul-lib-coverage@^1.1.1
โ โโ mkdirp@^0.5.1
โ โโ rimraf@^2.6.1
โ โโ source-map@^0.5.3
โโ [email protected]
โ โโ handlebars@^4.0.3
โโ [email protected]
โ โโ throat@^4.0.0
โโ [email protected]
โ โโ ansi-escapes@^3.0.0
โ โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ glob@^7.1.2
โ โโ graceful-fs@^4.1.11
โ โโ is-ci@^1.0.10
โ โโ istanbul-api@^1.1.1
โ โโ istanbul-lib-coverage@^1.0.1
โ โโ istanbul-lib-instrument@^1.4.2
โ โโ istanbul-lib-source-maps@^1.1.0
โ โโ jest-changed-files@^21.1.0
โ โโ jest-config@^21.1.0
โ โโ jest-environment-jsdom@^21.1.0
โ โโ jest-haste-map@^21.1.0
โ โโ jest-message-util@^21.1.0
โ โโ jest-regex-util@^21.1.0
โ โโ jest-resolve-dependencies@^21.1.0
โ โโ jest-runner@^21.1.0
โ โโ jest-runtime@^21.1.0
โ โโ jest-snapshot@^21.1.0
โ โโ jest-util@^21.1.0
โ โโ micromatch@^2.3.11
โ โโ node-notifier@^5.0.2
โ โโ pify@^3.0.0
โ โโ [email protected]
โ โโ slash@^1.0.0
โ โโ string-length@^2.0.0
โ โโ strip-ansi@^4.0.0
โ โโ [email protected]
โ โ โโ ansi-regex@^3.0.0
โ โโ which@^1.2.12
โ โโ worker-farm@^1.3.1
โ โโ yargs@^9.0.0
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ glob@^7.1.1
โ โโ jest-environment-jsdom@^21.1.0
โ โโ jest-environment-node@^21.1.0
โ โโ jest-get-type@^21.0.2
โ โโ jest-jasmine2@^21.1.0
โ โโ jest-regex-util@^21.1.0
โ โโ jest-resolve@^21.1.0
โ โโ jest-util@^21.1.0
โ โโ jest-validate@^21.1.0
โ โโ pretty-format@^21.1.0
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ diff@^3.2.0
โ โโ jest-get-type@^21.0.2
โ โโ pretty-format@^21.1.0
โโ [email protected]
โโ [email protected]
โ โโ jest-mock@^21.1.0
โ โโ jest-util@^21.1.0
โ โโ jsdom@^9.12.0
โโ [email protected]
โ โโ jest-mock@^21.1.0
โ โโ jest-util@^21.1.0
โโ [email protected]
โโ [email protected]
โ โโ fb-watchman@^2.0.0
โ โโ graceful-fs@^4.1.11
โ โโ jest-docblock@^21.1.0
โ โโ micromatch@^2.3.11
โ โโ sane@^2.0.0
โ โโ worker-farm@^1.3.1
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ expect@^21.1.0
โ โโ graceful-fs@^4.1.11
โ โโ jest-diff@^21.1.0
โ โโ jest-matcher-utils@^21.1.0
โ โโ jest-message-util@^21.1.0
โ โโ jest-snapshot@^21.1.0
โ โโ p-cancelable@^0.3.0
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ jest-get-type@^21.0.2
โ โโ pretty-format@^21.1.0
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ micromatch@^2.3.11
โ โโ slash@^1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ jest-regex-util@^21.1.0
โโ [email protected]
โ โโ browser-resolve@^1.11.2
โ โโ chalk@^2.0.1
โ โโ is-builtin-module@^1.0.0
โโ [email protected]
โ โโ jest-config@^21.1.0
โ โโ jest-docblock@^21.1.0
โ โโ jest-haste-map@^21.1.0
โ โโ jest-jasmine2@^21.1.0
โ โโ jest-message-util@^21.1.0
โ โโ jest-runtime@^21.1.0
โ โโ jest-util@^21.1.0
โ โโ pify@^3.0.0
โ โโ [email protected]
โ โโ throat@^4.0.0
โ โโ worker-farm@^1.3.1
โโ [email protected]
โ โโ babel-core@^6.0.0
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.26.0
โ โ โโ babel-generator@^6.26.0
โ โ โโ babel-helpers@^6.24.1
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-register@^6.26.0
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-template@^6.26.0
โ โ โโ babel-traverse@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ babylon@^6.18.0
โ โ โโ convert-source-map@^1.5.0
โ โ โโ debug@^2.6.8
โ โ โโ json5@^0.5.1
โ โ โโ lodash@^4.17.4
โ โ โโ minimatch@^3.0.4
โ โ โโ path-is-absolute@^1.0.1
โ โ โโ private@^0.1.7
โ โ โโ slash@^1.0.0
โ โ โโ source-map@^0.5.6
โ โโ [email protected]
โ โ โโ babel-runtime@^6.22.0
โ โ โโ babel-template@^6.24.1
โ โโ babel-jest@^21.0.2
โ โโ babel-plugin-istanbul@^4.0.0
โ โโ [email protected]
โ โ โโ babel-core@^6.26.0
โ โ โโ babel-runtime@^6.26.0
โ โ โโ core-js@^2.5.0
โ โ โโ home-or-tmp@^2.0.0
โ โ โโ lodash@^4.17.4
โ โ โโ mkdirp@^0.5.1
โ โ โโ source-map-support@^0.4.15
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-traverse@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ babylon@^6.18.0
โ โ โโ lodash@^4.17.4
โ โโ [email protected]
โ โ โโ babel-code-frame@^6.26.0
โ โ โโ babel-messages@^6.23.0
โ โ โโ babel-runtime@^6.26.0
โ โ โโ babel-types@^6.26.0
โ โ โโ babylon@^6.18.0
โ โ โโ debug@^2.6.8
โ โ โโ globals@^9.18.0
โ โ โโ invariant@^2.2.2
โ โ โโ lodash@^4.17.4
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.17.4
โ โ โโ to-fast-properties@^1.0.3
โ โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ convert-source-map@^1.4.0
โ โโ [email protected]
โ โโ graceful-fs@^4.1.11
โ โโ [email protected]
โ โ โโ os-homedir@^1.0.0
โ โ โโ os-tmpdir@^1.0.1
โ โโ jest-config@^21.1.0
โ โโ jest-haste-map@^21.1.0
โ โโ jest-regex-util@^21.1.0
โ โโ jest-resolve@^21.1.0
โ โโ jest-util@^21.1.0
โ โโ json-stable-stringify@^1.0.1
โ โโ micromatch@^2.3.11
โ โโ slash@^1.0.0
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ write-file-atomic@^2.1.0
โ โโ yargs@^9.0.0
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ jest-diff@^21.1.0
โ โโ jest-matcher-utils@^21.1.0
โ โโ mkdirp@^0.5.1
โ โโ natural-compare@^1.4.0
โ โโ pretty-format@^21.1.0
โโ [email protected]
โ โโ callsites@^2.0.0
โ โโ chalk@^2.0.1
โ โโ graceful-fs@^4.1.11
โ โโ jest-message-util@^21.1.0
โ โโ jest-mock@^21.1.0
โ โโ jest-validate@^21.1.0
โ โโ mkdirp@^0.5.1
โโ [email protected]
โ โโ chalk@^2.0.1
โ โโ jest-get-type@^21.0.2
โ โโ leven@^2.1.0
โ โโ pretty-format@^21.1.0
โโ [email protected]
โ โโ jest-cli@^21.1.0
โโ [email protected]
โโ [email protected]
โ โโ argparse@^1.0.7
โ โโ esprima@^4.0.0
โโ [email protected]
โโ [email protected]
โ โโ abab@^1.0.3
โ โโ acorn-globals@^3.1.0
โ โโ acorn@^4.0.4
โ โโ [email protected]
โ โ โโ co@^4.6.0
โ โ โโ fast-deep-equal@^1.0.0
โ โ โโ json-schema-traverse@^0.3.0
โ โ โโ json-stable-stringify@^1.0.1
โ โโ array-equal@^1.0.0
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ content-type-parser@^1.0.1
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ cssom@>= 0.3.2 < 0.4.0
โ โโ cssstyle@>= 0.2.37 < 0.3.0
โ โโ escodegen@^1.6.1
โ โโ [email protected]
โ โ โโ asynckit@^0.4.0
โ โ โโ combined-stream@^1.0.5
โ โ โโ mime-types@^2.1.12
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ ajv@^5.1.0
โ โ โโ har-schema@^2.0.0
โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โ โโ [email protected]
โ โโ html-encoding-sniffer@^1.0.1
โ โโ [email protected]
โ โ โโ assert-plus@^1.0.0
โ โ โโ jsprim@^1.2.2
โ โ โโ sshpk@^1.7.0
โ โโ nwmatcher@>= 1.3.9 < 2.0.0
โ โโ parse5@^1.5.1
โ โโ [email protected]
โ โโ [email protected]
โ โโ request@^2.79.0
โ โโ [email protected]
โ โ โโ aws-sign2@~0.7.0
โ โ โโ aws4@^1.6.0
โ โ โโ caseless@~0.12.0
โ โ โโ combined-stream@~1.0.5
โ โ โโ extend@~3.0.1
โ โ โโ forever-agent@~0.6.1
โ โ โโ form-data@~2.3.1
โ โ โโ har-validator@~5.0.3
โ โ โโ hawk@~6.0.2
โ โ โโ http-signature@~1.2.0
โ โ โโ is-typedarray@~1.0.0
โ โ โโ isstream@~0.1.2
โ โ โโ json-stringify-safe@~5.0.1
โ โ โโ mime-types@~2.1.17
โ โ โโ oauth-sign@~0.8.2
โ โ โโ performance-now@^2.1.0
โ โ โโ qs@~6.5.1
โ โ โโ safe-buffer@^5.1.1
โ โ โโ stringstream@~0.0.5
โ โ โโ tough-cookie@~2.3.2
โ โ โโ tunnel-agent@^0.6.0
โ โ โโ uuid@^3.1.0
โ โโ sax@^1.2.1
โ โโ [email protected]
โ โ โโ [email protected]
โ โโ symbol-tree@^3.2.1
โ โโ tough-cookie@^2.3.2
โ โโ webidl-conversions@^4.0.0
โ โโ whatwg-encoding@^1.0.1
โ โโ whatwg-url@^4.3.0
โ โโ xml-name-validator@^2.0.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ jsonify@~0.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ is-buffer@^1.1.5
โโ [email protected]
โโ [email protected]
โ โโ invert-kv@^1.0.0
โโ [email protected]
โโ [email protected]
โ โโ prelude-ls@~1.1.2
โ โโ type-check@~0.3.2
โโ [email protected]
โ โโ graceful-fs@^4.1.2
โ โโ parse-json@^2.2.0
โ โโ pify@^2.0.0
โ โโ strip-bom@^3.0.0
โ โโ [email protected]
โโ [email protected]
โ โโ p-locate@^2.0.0
โ โโ path-exists@^3.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ js-tokens@^3.0.0
โโ [email protected]
โ โโ pseudomap@^1.0.2
โ โโ yallist@^2.1.2
โโ [email protected]
โ โโ pify@^2.3.0
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ mimic-fn@^1.0.0
โโ [email protected]
โโ [email protected]
โ โโ arr-diff@^2.0.0
โ โโ array-unique@^0.2.1
โ โโ braces@^1.8.2
โ โโ expand-brackets@^0.1.4
โ โโ extglob@^0.3.1
โ โโ filename-regex@^2.0.0
โ โโ is-extglob@^1.0.0
โ โโ is-glob@^2.0.1
โ โโ kind-of@^3.0.2
โ โโ normalize-path@^2.0.1
โ โโ object.omit@^2.0.0
โ โโ parse-glob@^3.0.4
โ โโ regex-cache@^0.4.2
โโ [email protected]
โโ [email protected]
โ โโ mime-db@~1.30.0
โโ [email protected]
โโ [email protected]
โ โโ brace-expansion@^1.1.7
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ encoding@^0.1.11
โ โโ is-stream@^1.0.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ growly@^1.3.0
โ โโ semver@^5.3.0
โ โโ shellwords@^0.1.0
โ โโ which@^1.2.12
โโ [email protected]
โ โโ [email protected]
โ โโ mkdirp@^0.5.1
โ โโ nopt@^4.0.1
โ โโ npmlog@^4.0.2
โ โโ rc@^1.1.7
โ โโ [email protected]
โ โโ rimraf@^2.6.1
โ โโ semver@^5.3.0
โ โโ tar-pack@^3.4.0
โ โโ tar@^2.2.1
โโ [email protected]
โ โโ abbrev@1
โ โโ osenv@^0.1.4
โโ [email protected]
โ โโ hosted-git-info@^2.1.4
โ โโ is-builtin-module@^1.0.0
โ โโ semver@2 || 3 || 4 || 5
โ โโ validate-npm-package-license@^3.0.1
โโ [email protected]
โ โโ remove-trailing-separator@^1.0.1
โโ [email protected]
โ โโ path-key@^2.0.0
โโ [email protected]
โ โโ are-we-there-yet@~1.1.2
โ โโ console-control-strings@~1.1.0
โ โโ gauge@~2.7.3
โ โโ set-blocking@~2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ for-own@^0.1.4
โ โโ is-extendable@^0.1.1
โโ [email protected]
โ โโ wrappy@1
โโ [email protected]
โ โโ minimist@~0.0.1
โ โโ [email protected]
โ โโ wordwrap@~0.0.2
โโ [email protected]
โ โโ deep-is@~0.1.3
โ โโ fast-levenshtein@~2.0.4
โ โโ levn@~0.3.0
โ โโ prelude-ls@~1.1.2
โ โโ type-check@~0.3.2
โ โโ wordwrap@~1.0.0
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ execa@^0.7.0
โ โโ lcid@^1.0.0
โ โโ mem@^1.1.0
โโ [email protected]
โโ [email protected]
โ โโ os-homedir@^1.0.0
โ โโ os-tmpdir@^1.0.0
โโ [email protected]
โ โโ graceful-fs@^4.1.11
โ โโ is-plain-obj@^1.1.0
โ โโ mkdirp@^0.5.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ p-limit@^1.1.0
โโ [email protected]
โ โโ glob-base@^0.3.0
โ โโ is-dotfile@^1.0.0
โ โโ is-extglob@^1.0.0
โ โโ is-glob@^2.0.0
โโ [email protected]
โ โโ error-ex@^1.2.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ pify@^2.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ pinkie@^2.0.0
โโ [email protected]
โโ [email protected]
โ โโ node-modules-regexp@^1.0.0
โโ [email protected]
โ โโ find-up@^2.1.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ ansi-regex@^3.0.0
โ โโ [email protected]
โ โโ ansi-styles@^3.2.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ asap@~2.0.3
โโ [email protected]
โ โโ fbjs@^0.8.9
โ โโ loose-envify@^1.3.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ is-number@^3.0.0
โ โโ [email protected]
โ โ โโ kind-of@^3.0.2
โ โ โโ [email protected]
โ โ โโ is-buffer@^1.1.5
โ โโ kind-of@^4.0.0
โ โโ [email protected]
โ โโ is-buffer@^1.1.5
โโ [email protected]
โ โโ deep-extend@~0.4.0
โ โโ ini@~1.3.0
โ โโ minimist@^1.2.0
โ โโ strip-json-comments@~2.0.1
โโ [email protected]
โ โโ fbjs@^0.8.9
โ โโ loose-envify@^1.1.0
โ โโ object-assign@^4.1.0
โ โโ prop-types@^15.5.10
โโ [email protected]
โ โโ create-react-class@^15.6.0
โ โโ fbjs@^0.8.9
โ โโ loose-envify@^1.1.0
โ โโ object-assign@^4.1.0
โ โโ prop-types@^15.5.10
โโ [email protected]
โ โโ find-up@^2.0.0
โ โโ read-pkg@^2.0.0
โโ [email protected]
โ โโ load-json-file@^2.0.0
โ โโ normalize-package-data@^2.3.2
โ โโ path-type@^2.0.0
โโ [email protected]
โ โโ core-util-is@~1.0.0
โ โโ inherits@~2.0.3
โ โโ isarray@~1.0.0
โ โโ process-nextick-args@~1.0.6
โ โโ safe-buffer@~5.1.1
โ โโ string_decoder@~1.0.3
โ โโ util-deprecate@~1.0.1
โโ [email protected]
โ โโ graceful-fs@^4.1.2
โ โโ minimatch@^3.0.2
โ โโ readable-stream@^2.0.2
โ โโ set-immediate-shim@^1.0.1
โโ [email protected]
โ โโ regenerate@^1.3.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ babel-runtime@^6.18.0
โ โโ babel-types@^6.19.0
โ โโ [email protected]
โ โ โโ babel-runtime@^6.26.0
โ โ โโ esutils@^2.0.2
โ โ โโ lodash@^4.17.4
โ โ โโ to-fast-properties@^1.0.3
โ โโ private@^0.1.6
โ โโ [email protected]
โโ [email protected]
โ โโ is-equal-shallow@^0.1.3
โโ [email protected]
โ โโ regenerate-unicode-properties@^5.1.1
โ โโ regenerate@^1.3.3
โ โโ regjsgen@^0.3.0
โ โโ regjsparser@^0.2.1
โ โโ unicode-match-property-ecmascript@^1.0.3
โ โโ unicode-match-property-value-ecmascript@^1.0.1
โโ [email protected]
โโ [email protected]
โ โโ jsesc@~0.5.0
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ is-finite@^1.0.0
โโ [email protected]
โ โโ aws-sign2@~0.6.0
โ โโ aws4@^1.2.1
โ โโ caseless@~0.12.0
โ โโ combined-stream@~1.0.5
โ โโ extend@~3.0.0
โ โโ forever-agent@~0.6.1
โ โโ form-data@~2.1.1
โ โโ har-validator@~4.2.1
โ โโ hawk@~3.1.3
โ โโ http-signature@~1.1.0
โ โโ is-typedarray@~1.0.0
โ โโ isstream@~0.1.2
โ โโ json-stringify-safe@~5.0.1
โ โโ mime-types@~2.1.7
โ โโ oauth-sign@~0.8.1
โ โโ performance-now@^0.2.0
โ โโ qs@~6.4.0
โ โโ safe-buffer@^5.0.1
โ โโ stringstream@~0.0.4
โ โโ tough-cookie@~2.3.0
โ โโ tunnel-agent@^0.6.0
โ โโ uuid@^3.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ path-parse@^1.0.5
โโ [email protected]
โ โโ align-text@^0.1.1
โโ [email protected]
โ โโ glob@^7.0.5
โโ [email protected]
โโ [email protected]
โ โโ anymatch@^1.3.0
โ โโ exec-sh@^0.2.0
โ โโ fb-watchman@^2.0.0
โ โโ fsevents@^1.1.1
โ โโ minimatch@^3.0.2
โ โโ minimist@^1.1.1
โ โโ walker@~1.0.5
โ โโ watch@~0.10.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ shebang-regex@^1.0.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โ โโ source-map@^0.5.6
โโ [email protected]
โโ [email protected]
โ โโ spdx-license-ids@^1.0.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ asn1@~0.2.3
โ โโ assert-plus@^1.0.0
โ โโ bcrypt-pbkdf@^1.0.0
โ โโ dashdash@^1.12.0
โ โโ ecc-jsbn@~0.1.1
โ โโ getpass@^0.1.1
โ โโ jsbn@~0.1.0
โ โโ tweetnacl@~0.14.0
โโ [email protected]
โ โโ safe-buffer@~5.1.0
โโ [email protected]
โ โโ [email protected]
โ โโ astral-regex@^1.0.0
โ โโ strip-ansi@^4.0.0
โ โโ [email protected]
โ โโ ansi-regex@^3.0.0
โโ [email protected]
โ โโ code-point-at@^1.0.0
โ โโ is-fullwidth-code-point@^1.0.0
โ โโ strip-ansi@^3.0.0
โโ [email protected]
โโ [email protected]
โ โโ ansi-regex@^2.0.0
โโ [email protected]
โ โโ is-utf8@^0.2.0
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ has-flag@^2.0.0
โโ [email protected]
โโ [email protected]
โ โโ debug@^2.2.0
โ โโ fstream-ignore@^1.0.5
โ โโ fstream@^1.0.10
โ โโ once@^1.3.3
โ โโ readable-stream@^2.1.4
โ โโ rimraf@^2.5.1
โ โโ tar@^2.2.1
โ โโ uid-number@^0.0.6
โโ [email protected]
โ โโ block-stream@*
โ โโ fstream@^1.0.2
โ โโ inherits@2
โโ [email protected]
โ โโ arrify@^1.0.1
โ โโ [email protected]
โ โ โโ path-exists@^2.0.0
โ โ โโ pinkie-promise@^2.0.0
โ โโ [email protected]
โ โ โโ graceful-fs@^4.1.2
โ โ โโ parse-json@^2.2.0
โ โ โโ pify@^2.0.0
โ โ โโ pinkie-promise@^2.0.0
โ โ โโ strip-bom@^2.0.0
โ โโ micromatch@^2.3.11
โ โโ object-assign@^4.1.0
โ โโ [email protected]
โ โ โโ pinkie-promise@^2.0.0
โ โโ [email protected]
โ โ โโ graceful-fs@^4.1.2
โ โ โโ pify@^2.0.0
โ โ โโ pinkie-promise@^2.0.0
โ โโ read-pkg-up@^1.0.1
โ โโ [email protected]
โ โ โโ find-up@^1.0.0
โ โ โโ read-pkg@^1.0.0
โ โโ [email protected]
โ โ โโ load-json-file@^1.0.0
โ โ โโ normalize-package-data@^2.3.2
โ โ โโ path-type@^1.0.0
โ โโ require-main-filename@^1.0.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ punycode@^1.4.1
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ safe-buffer@^5.0.1
โโ [email protected]
โโ [email protected]
โ โโ prelude-ls@~1.1.2
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โ โโ [email protected]
โ โ โโ center-align@^0.1.1
โ โ โโ right-align@^0.1.1
โ โ โโ [email protected]
โ โโ source-map@~0.5.1
โ โโ uglify-to-browserify@~1.0.0
โ โโ [email protected]
โ โโ yargs@~3.10.0
โ โโ [email protected]
โ โโ camelcase@^1.0.2
โ โโ cliui@^2.1.0
โ โโ decamelize@^1.0.0
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ unicode-canonical-property-names-ecmascript@^1.0.2
โ โโ unicode-property-aliases-ecmascript@^1.0.3
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ user-home@^1.1.1
โโ [email protected]
โ โโ spdx-correct@~1.0.0
โ โโ spdx-expression-parse@~1.0.0
โโ [email protected]
โ โโ assert-plus@^1.0.0
โ โโ [email protected]
โ โโ extsprintf@^1.2.0
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ tr46@~0.0.3
โ โโ webidl-conversions@^3.0.0
โ โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ isexe@^2.0.0
โโ [email protected]
โ โโ string-width@^1.0.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ errno@^0.1.4
โ โโ xtend@^4.0.1
โโ [email protected]
โ โโ string-width@^1.0.1
โ โโ strip-ansi@^3.0.1
โโ [email protected]
โโ [email protected]
โ โโ graceful-fs@^4.1.11
โ โโ imurmurhash@^0.1.4
โ โโ signal-exit@^3.0.2
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โโ [email protected]
โ โโ camelcase@^4.1.0
โโ [email protected]
โโ [email protected]
โโ camelcase@^4.1.0
โโ cliui@^3.2.0
โโ decamelize@^1.1.1
โโ get-caller-file@^1.0.1
โโ [email protected]
โโ os-locale@^2.0.0
โโ read-pkg-up@^2.0.0
โโ require-directory@^2.1.1
โโ require-main-filename@^1.0.1
โโ set-blocking@^2.0.0
โโ string-width@^2.0.0
โโ [email protected]
โ โโ is-fullwidth-code-point@^2.0.0
โ โโ strip-ansi@^4.0.0
โโ [email protected]
โ โโ ansi-regex@^3.0.0
โโ which-module@^2.0.0
โโ y18n@^3.2.1
โโ yargs-parser@^7.0.0
Done in 0.50s.
I think the problem might be caused by jest-runtime, which uses Babel 6.
Any suggestions on how to fix? ๐
It may not be feasible at this point, if some of your packages have strong ties to dependencies that expect Babel 6.
You could open an issue or a PR the jest repo, asking them to allow the user to use babel 7! ๐
"babel-core": "^7.0.0-beta.3",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^7.0.0-beta.3",
"babel-plugin-transform-class-properties": "^7.0.0-beta.3",
"babel-plugin-transform-es2015-arrow-functions": "^7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-polyfill": "^7.0.0-beta.3",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-es2015": "^7.0.0-beta.3",
{
"presets": [
// "es2015",
["env", {
"modules": false,
"targets": {
"browsers": "> 1%",
"forceAllTransforms": true
},
"useBuiltIns": "usage",
"include": ["transform-object-rest-spread"]
}]
],
"plugins": [
// "syntax-dynamic-import",
// "transform-object-rest-spread",
// ["transform-class-properties", { "spec": true, "loose": true }]
]
}
md5-7b345fcdea1dad5f3c7b183f3437d12a
ERROR in ./client/packs/application.js
Module build failed: TypeError: /Users/anatoly/work/client/packs/application.js: path.arrowFunctionToExpression is not a function
at PluginPass.ArrowFunctionExpression (/Users/anatoly/work/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/lib/index.js:10:14)
at newFn (/Users/anatoly/work/node_modules/babel-traverse/lib/visitors.js:276:21)
at NodePath._call (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:76:18)
at NodePath.call (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:48:17)
at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:105:12)
at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)
at TraversalContext.visitMultiple (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:103:17)
at TraversalContext.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:190:19)
at Function.traverse.node (/Users/anatoly/work/node_modules/babel-traverse/lib/index.js:114:17)
at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:115:19)
at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)
at TraversalContext.visitSingle (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:108:19)
at TraversalContext.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:192:19)
at Function.traverse.node (/Users/anatoly/work/node_modules/babel-traverse/lib/index.js:114:17)
at NodePath.visit (/Users/anatoly/work/node_modules/babel-traverse/lib/path/context.js:115:19)
at TraversalContext.visitQueue (/Users/anatoly/work/node_modules/babel-traverse/lib/context.js:150:16)
Can you try [email protected]?
@loganfsmyth there are no such version https://github.com/babel/babel-preset-env/releases
Looks like we haven't explicitly called it out, but we've moved preset-env into Babel's main repo, so it was published as part of https://github.com/babel/babel/releases/tag/v7.0.0-beta.3 At the moment the main callout is in the README https://github.com/babel/babel-preset-env#we-only-moved-the-package-babel-preset-env-into-the-main-babel-repo-under-a-different-folder-instead-of-in-this-repo-we-are-still-in-the-process-of-moving-over-the-issueslabelsprsetc
Most helpful comment
This is likely the opposite, you're using the new preset with an older
babel-core.