Skip to content

Commit

Permalink
add dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Wetinee committed Jan 9, 2020
1 parent 711ce80 commit a7ff237
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/babel-preset-env-standalone/package.json
Expand Up @@ -13,7 +13,9 @@
"devDependencies": {
"@babel/plugin-proposal-dynamic-import": "^7.7.4",
"@babel/plugin-proposal-json-strings": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-syntax-json-strings": "^7.7.4",
"@babel/plugin-syntax-numeric-separator": "^7.7.4",
"@babel/plugin-syntax-top-level-await": "^7.7.4",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4",
"@babel/plugin-transform-new-target": "^7.7.4",
Expand Down
4 changes: 4 additions & 0 deletions packages/babel-preset-env-standalone/src/available-plugins.js
@@ -1,15 +1,19 @@
import { availablePlugins, registerPlugin } from "@babel/standalone";
import proposalJsonStrings from "@babel/plugin-proposal-json-strings";
import proposalDynamicImport from "@babel/plugin-proposal-dynamic-import";
import proposalNumericSeparator from "@babel/plugin-proposal-numeric-separator";
import syntaxJsonStrings from "@babel/plugin-syntax-json-strings";
import syntaxNumericSeparator from "@babel/plugin-syntax-numeric-separator";
import syntaxTopLevelAwait from "@babel/plugin-syntax-top-level-await";
import transformNamedCapturingGroupsRegex from "@babel/plugin-transform-named-capturing-groups-regex";
import transformNewTarget from "@babel/plugin-transform-new-target";

const notIncludedPlugins = {
"proposal-dynamic-import": proposalDynamicImport,
"proposal-json-strings": proposalJsonStrings,
"proposal-numeric-separator": proposalNumericSeparator,
"syntax-json-strings": syntaxJsonStrings,
"syntax-numeric-separator": syntaxNumericSeparator,
"syntax-top-level-await": syntaxTopLevelAwait,
"transform-named-capturing-groups-regex": transformNamedCapturingGroupsRegex,
"transform-new-target": transformNewTarget,
Expand Down

0 comments on commit a7ff237

Please sign in to comment.