diff options
Diffstat (limited to 'node_modules/babel-plugin-syntax-exponentiation-operator')
4 files changed, 0 insertions, 64 deletions
diff --git a/node_modules/babel-plugin-syntax-exponentiation-operator/.npmignore b/node_modules/babel-plugin-syntax-exponentiation-operator/.npmignore deleted file mode 100644 index cace0d6dd..000000000 --- a/node_modules/babel-plugin-syntax-exponentiation-operator/.npmignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules -*.log -src diff --git a/node_modules/babel-plugin-syntax-exponentiation-operator/README.md b/node_modules/babel-plugin-syntax-exponentiation-operator/README.md deleted file mode 100644 index 42057eaf2..000000000 --- a/node_modules/babel-plugin-syntax-exponentiation-operator/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# babel-plugin-syntax-exponentiation-operator - -Allow parsing of the exponentiation operator. - -## Installation - -```sh -$ npm install babel-plugin-syntax-exponentiation-operator -``` - -## Usage - -### Via `.babelrc` (Recommended) - -**.babelrc** - -```json -{ - "plugins": ["syntax-exponentiation-operator"] -} -``` - -### Via CLI - -```sh -$ babel --plugins syntax-exponentiation-operator script.js -``` - -### Via Node API - -```javascript -require("babel-core").transform("code", { - plugins: ["syntax-exponentiation-operator"] -}); -``` diff --git a/node_modules/babel-plugin-syntax-exponentiation-operator/lib/index.js b/node_modules/babel-plugin-syntax-exponentiation-operator/lib/index.js deleted file mode 100644 index 5195ee626..000000000 --- a/node_modules/babel-plugin-syntax-exponentiation-operator/lib/index.js +++ /dev/null @@ -1,13 +0,0 @@ -"use strict"; - -exports.__esModule = true; - -exports.default = function () { - return { - manipulateOptions: function manipulateOptions(opts, parserOpts) { - parserOpts.plugins.push("exponentiationOperator"); - } - }; -}; - -module.exports = exports["default"];
\ No newline at end of file diff --git a/node_modules/babel-plugin-syntax-exponentiation-operator/package.json b/node_modules/babel-plugin-syntax-exponentiation-operator/package.json deleted file mode 100644 index 94c1d041e..000000000 --- a/node_modules/babel-plugin-syntax-exponentiation-operator/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "babel-plugin-syntax-exponentiation-operator", - "version": "6.13.0", - "description": "Allow parsing of the exponentiation operator", - "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-exponentation-operator", - "license": "MIT", - "main": "lib/index.js", - "keywords": [ - "babel-plugin" - ], - "dependencies": {}, - "devDependencies": {} -} |