babel-preset-kensho
Advanced tools
Comparing version 9.4.0 to 9.5.0
@@ -32,3 +32,7 @@ /* eslint-disable global-require */ | ||
exclude: /node_modules/, | ||
plugins: [[require('@babel/plugin-proposal-class-properties').default, {loose}]], | ||
plugins: [ | ||
[require('@babel/plugin-proposal-class-properties').default, {loose}], | ||
[require('@babel/plugin-proposal-optional-chaining').default, {loose}], | ||
[require('@babel/plugin-proposal-nullish-coalescing-operator').default, {loose}], | ||
], | ||
presets: [ | ||
@@ -35,0 +39,0 @@ typescript && [require('@babel/preset-typescript').default, typescript], |
{ | ||
"name": "babel-preset-kensho", | ||
"version": "9.4.0", | ||
"version": "9.5.0", | ||
"description": "Babel preset to transpile ES2015+/JSX to ES5.", | ||
@@ -21,17 +21,19 @@ "main": "index.js", | ||
"@babel/plugin-proposal-class-properties": "^7.7.0", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4", | ||
"@babel/plugin-proposal-optional-chaining": "^7.6.0", | ||
"@babel/plugin-transform-runtime": "^7.6.2", | ||
"@babel/preset-env": "^7.7.1", | ||
"@babel/preset-react": "^7.7.0", | ||
"@babel/preset-typescript": "^7.7.0", | ||
"@babel/preset-typescript": "^7.7.2", | ||
"@emotion/babel-preset-css-prop": "^10.0.23" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.7.0", | ||
"@babel/runtime": "^7.7.1", | ||
"@babel/core": "^7.7.2", | ||
"@babel/runtime": "^7.7.2", | ||
"ava": "^2.4.0", | ||
"eslint": "^6.6.0", | ||
"eslint-config-kensho": "^15.1.0", | ||
"prettier": "^1.18.2", | ||
"typescript": "^3.6.4" | ||
"eslint-config-kensho": "^15.2.0", | ||
"prettier": "^1.19.0", | ||
"typescript": "^3.7.2" | ||
} | ||
} |
6679
47
9
+ Added@babel/plugin-proposal-nullish-coalescing-operator@^7.4.4
+ Added@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(transitive)
+ Added@babel/plugin-proposal-optional-chaining@7.21.0(transitive)
+ Added@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(transitive)
+ Added@babel/plugin-syntax-optional-chaining@7.8.3(transitive)