parent
0766f29591
commit
3f95a767f2
@ -8,6 +8,7 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-preset-stage-1",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
||||
"babel-plugin-transform-export-extensions": "^6.22.0",
|
||||
"babel-preset-stage-2": "^6.22.0"
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import presetStage2 from "babel-preset-stage-2";
|
||||
|
||||
import transformDecoratorsLegacy from "babel-plugin-transform-decorators-legacy";
|
||||
import transformExportExtensions from "babel-plugin-transform-export-extensions";
|
||||
|
||||
export default {
|
||||
@ -7,6 +8,7 @@ export default {
|
||||
presetStage2
|
||||
],
|
||||
plugins: [
|
||||
transformDecoratorsLegacy,
|
||||
transformExportExtensions
|
||||
]
|
||||
};
|
||||
|
||||
@ -10,7 +10,6 @@
|
||||
"dependencies": {
|
||||
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
||||
"babel-plugin-transform-class-properties": "^6.22.0",
|
||||
"babel-plugin-transform-decorators": "^6.22.0",
|
||||
"babel-plugin-transform-unicode-property-regex": "^2.0.0",
|
||||
"babel-preset-stage-3": "^6.22.0"
|
||||
}
|
||||
|
||||
@ -2,7 +2,6 @@ import presetStage3 from "babel-preset-stage-3";
|
||||
|
||||
import syntaxDynamicImport from "babel-plugin-syntax-dynamic-import";
|
||||
import transformClassProperties from "babel-plugin-transform-class-properties";
|
||||
import transformDecorators from "babel-plugin-transform-decorators";
|
||||
import transformUnicodePropertyRegex from "babel-plugin-transform-unicode-property-regex";
|
||||
|
||||
export default {
|
||||
@ -12,7 +11,6 @@ export default {
|
||||
plugins: [
|
||||
syntaxDynamicImport,
|
||||
transformClassProperties,
|
||||
transformDecorators,
|
||||
transformUnicodePropertyRegex
|
||||
]
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user