Allow plugins to assert that a specific babel version has loaded the plugin. (#7450)

This commit is contained in:
Logan Smyth
2018-03-04 14:36:54 -08:00
committed by GitHub
parent 7f8f4e86dc
commit a4795408b4
201 changed files with 875 additions and 212 deletions

View File

@@ -6,6 +6,7 @@
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-plugin-utils": "7.0.0-beta.40",
"@babel/helper-annotate-as-pure": "7.0.0-beta.40",
"@babel/helper-define-map": "7.0.0-beta.40",
"@babel/helper-function-name": "7.0.0-beta.40",

View File

@@ -1,3 +1,4 @@
import { declare } from "@babel/helper-plugin-utils";
import LooseTransformer from "./loose";
import VanillaTransformer from "./vanilla";
import annotateAsPure from "@babel/helper-annotate-as-pure";
@@ -14,7 +15,9 @@ const builtinClasses = new Set([
...getBuiltinClasses("browser"),
]);
export default function(api, options) {
export default declare((api, options) => {
api.assertVersion(7);
const { loose } = options;
const Constructor = loose ? LooseTransformer : VanillaTransformer;
@@ -65,4 +68,4 @@ export default function(api, options) {
},
},
};
}
});