From 81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 Mon Sep 17 00:00:00 2001 From: Piotr Russ Date: Wed, 18 Nov 2020 23:26:45 +0100 Subject: rm node_modules --- .../.npmignore | 3 -- .../babel-plugin-syntax-async-generators/README.md | 35 ------------------ .../lib/index.js | 13 ------- .../package.json | 41 ---------------------- 4 files changed, 92 deletions(-) delete mode 100644 node_modules/babel-plugin-syntax-async-generators/.npmignore delete mode 100644 node_modules/babel-plugin-syntax-async-generators/README.md delete mode 100644 node_modules/babel-plugin-syntax-async-generators/lib/index.js delete mode 100644 node_modules/babel-plugin-syntax-async-generators/package.json (limited to 'node_modules/babel-plugin-syntax-async-generators') diff --git a/node_modules/babel-plugin-syntax-async-generators/.npmignore b/node_modules/babel-plugin-syntax-async-generators/.npmignore deleted file mode 100644 index 47cdd2c..0000000 --- a/node_modules/babel-plugin-syntax-async-generators/.npmignore +++ /dev/null @@ -1,3 +0,0 @@ -src -test -node_modules diff --git a/node_modules/babel-plugin-syntax-async-generators/README.md b/node_modules/babel-plugin-syntax-async-generators/README.md deleted file mode 100644 index 330f8e2..0000000 --- a/node_modules/babel-plugin-syntax-async-generators/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# babel-plugin-syntax-async-generators - -Allow parsing of async generator functions. - -## Installation - -```sh -$ npm install babel-plugin-syntax-async-generators -``` - -## Usage - -### Via `.babelrc` (Recommended) - -**.babelrc** - -```json -{ - "plugins": ["syntax-async-generators"] -} -``` - -### Via CLI - -```sh -$ babel --plugins syntax-async-generators script.js -``` - -### Via Node API - -```javascript -require("babel-core").transform("code", { - plugins: ["syntax-async-generators"] -}); -``` diff --git a/node_modules/babel-plugin-syntax-async-generators/lib/index.js b/node_modules/babel-plugin-syntax-async-generators/lib/index.js deleted file mode 100644 index a43fdf3..0000000 --- a/node_modules/babel-plugin-syntax-async-generators/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("asyncGenerators"); - } - }; -}; - -module.exports = exports["default"]; \ No newline at end of file diff --git a/node_modules/babel-plugin-syntax-async-generators/package.json b/node_modules/babel-plugin-syntax-async-generators/package.json deleted file mode 100644 index 792d1eb..0000000 --- a/node_modules/babel-plugin-syntax-async-generators/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "_from": "babel-plugin-syntax-async-generators@^6.5.0", - "_id": "babel-plugin-syntax-async-generators@6.13.0", - "_inBundle": false, - "_integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=", - "_location": "/babel-plugin-syntax-async-generators", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "babel-plugin-syntax-async-generators@^6.5.0", - "name": "babel-plugin-syntax-async-generators", - "escapedName": "babel-plugin-syntax-async-generators", - "rawSpec": "^6.5.0", - "saveSpec": null, - "fetchSpec": "^6.5.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-async-generator-functions" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", - "_shasum": "6bc963ebb16eccbae6b92b596eb7f35c342a8b9a", - "_spec": "babel-plugin-syntax-async-generators@^6.5.0", - "_where": "/home/pruss/Dev/3-minute-website/node_modules/babel-plugin-transform-async-generator-functions", - "bundleDependencies": false, - "dependencies": {}, - "deprecated": false, - "description": "Allow parsing of async generator functions", - "devDependencies": {}, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-async-generators", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators" - }, - "version": "6.13.0" -} -- cgit v1.2.3