[import()] Initial support for dynamic-import (#4699)

* [import()] Initial support for function-like import

* [import()] Renaming import-functions to dynamic-import

* [stage-2] Fixing lint error

* add to package.json
This commit is contained in:
Jordan Gensler
2016-10-17 11:02:00 -04:00
committed by Henry Zhu
parent b8eeddf960
commit 391e5bd813
7 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export default function () {
return {
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("dynamicImport");
}
};
}