jscodeshift
Advanced tools
Changelog
[0.6.2] 2018-12-05
@babel/register
/@babel/preset-env
is configured to not transpile any
language features that the running Node process supports. That means if you use
features in your transform code supported by the Node version you are running,
they will be left as is. Most of ES2015 is actually supported since Node v6.@babel/register
are now properly named and
loaded.Changelog
[0.6.1] 2018-12-04
.ts
or .tsx
, @babel/preset-typescript
is used to
convert them. This requires the --babel
option to be set (which it is by
default). ( #287 , @brieb )babel-preset-es2015
and babel-preset-stage-1
in favor of
@babel/preset-env
. Only @babel/proposal-class-properties
and
@babel/proposal-object-rest-spread
are enabled as experimental features. If
you want to use other's in your transform file, please create a PR.@babel/parser
instead of Babylon ( #291, @elliottsj )micromatch
=> v3.1.10, which doesn't (indirectly) depend on randomatic
<
v3 anymore (see #292).