first
This commit is contained in:
22
node_modules/babel-plugin-polyfill-regenerator/LICENSE
generated
vendored
Normal file
22
node_modules/babel-plugin-polyfill-regenerator/LICENSE
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2014-present Nicolò Ribaudo and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28
node_modules/babel-plugin-polyfill-regenerator/README.md
generated
vendored
Normal file
28
node_modules/babel-plugin-polyfill-regenerator/README.md
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
# babel-plugin-polyfill-regenerator
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```sh
|
||||
npm install --save-dev babel-plugin-polyfill-regenerator
|
||||
```
|
||||
|
||||
or using yarn:
|
||||
|
||||
```sh
|
||||
yarn add babel-plugin-polyfill-regenerator --dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Add this plugin to your Babel configuration:
|
||||
|
||||
```json
|
||||
{
|
||||
"plugins": [["polyfill-regenerator", { "method": "usage-global" }]]
|
||||
}
|
||||
```
|
||||
|
||||
This package supports the `usage-pure`, `usage-global`, and `entry-global` methods.
|
||||
When `entry-global` is used, it replaces imports to `regenerator-runtime`.
|
45
node_modules/babel-plugin-polyfill-regenerator/esm/index.mjs
generated
vendored
Normal file
45
node_modules/babel-plugin-polyfill-regenerator/esm/index.mjs
generated
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
import defineProvider from '@babel/helper-define-polyfill-provider';
|
||||
|
||||
const runtimeCompat = "#__secret_key__@babel/runtime__compatibility";
|
||||
var index = defineProvider(({
|
||||
debug,
|
||||
targets,
|
||||
babel
|
||||
}, options) => {
|
||||
if (!shallowEqual(targets, babel.targets())) {
|
||||
throw new Error("This plugin does not use the targets option. Only preset-env's targets" + " or top-level targets need to be configured for this plugin to work." + " See https://github.com/babel/babel-polyfills/issues/36 for more" + " details.");
|
||||
}
|
||||
const {
|
||||
[runtimeCompat]: {
|
||||
useBabelRuntime = false
|
||||
} = {}
|
||||
} = options;
|
||||
return {
|
||||
name: "regenerator",
|
||||
polyfills: ["regenerator-runtime"],
|
||||
usageGlobal(meta, utils) {
|
||||
if (isRegenerator(meta)) {
|
||||
debug("regenerator-runtime");
|
||||
utils.injectGlobalImport("regenerator-runtime/runtime.js");
|
||||
}
|
||||
},
|
||||
usagePure(meta, utils, path) {
|
||||
if (isRegenerator(meta)) {
|
||||
let pureName = "regenerator-runtime";
|
||||
if (useBabelRuntime) {
|
||||
var _get;
|
||||
const runtimeName = (_get = path.hub.file.get("runtimeHelpersModuleName")) != null ? _get : "@babel/runtime";
|
||||
pureName = `${runtimeName}/regenerator`;
|
||||
}
|
||||
path.replaceWith(utils.injectDefaultImport(pureName, "regenerator-runtime"));
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
const isRegenerator = meta => meta.kind === "global" && meta.name === "regeneratorRuntime";
|
||||
function shallowEqual(obj1, obj2) {
|
||||
return JSON.stringify(obj1) === JSON.stringify(obj2);
|
||||
}
|
||||
|
||||
export default index;
|
||||
//# sourceMappingURL=index.mjs.map
|
1
node_modules/babel-plugin-polyfill-regenerator/esm/index.mjs.map
generated
vendored
Normal file
1
node_modules/babel-plugin-polyfill-regenerator/esm/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import defineProvider from \"@babel/helper-define-polyfill-provider\";\nimport type { PluginPass } from \"@babel/core\";\n\nconst runtimeCompat = \"#__secret_key__@babel/runtime__compatibility\";\n\ntype Options = {\n \"#__secret_key__@babel/runtime__compatibility\": void | {\n useBabelRuntime: string;\n };\n};\n\nexport default defineProvider<Options>(({ debug, targets, babel }, options) => {\n if (!shallowEqual(targets, babel.targets())) {\n throw new Error(\n \"This plugin does not use the targets option. Only preset-env's targets\" +\n \" or top-level targets need to be configured for this plugin to work.\" +\n \" See https://github.com/babel/babel-polyfills/issues/36 for more\" +\n \" details.\",\n );\n }\n\n const { [runtimeCompat]: { useBabelRuntime = false } = {} } = options;\n\n return {\n name: \"regenerator\",\n\n polyfills: [\"regenerator-runtime\"],\n\n usageGlobal(meta, utils) {\n if (isRegenerator(meta)) {\n debug(\"regenerator-runtime\");\n utils.injectGlobalImport(\"regenerator-runtime/runtime.js\");\n }\n },\n usagePure(meta, utils, path) {\n if (isRegenerator(meta)) {\n let pureName = \"regenerator-runtime\";\n if (useBabelRuntime) {\n const runtimeName =\n ((path.hub as any).file as PluginPass).get(\n \"runtimeHelpersModuleName\",\n ) ?? \"@babel/runtime\";\n pureName = `${runtimeName}/regenerator`;\n }\n\n path.replaceWith(\n utils.injectDefaultImport(pureName, \"regenerator-runtime\"),\n );\n }\n },\n };\n});\n\nconst isRegenerator = meta =>\n meta.kind === \"global\" && meta.name === \"regeneratorRuntime\";\n\nfunction shallowEqual(obj1: any, obj2: any) {\n return JSON.stringify(obj1) === JSON.stringify(obj2);\n}\n"],"names":["runtimeCompat","defineProvider","debug","targets","babel","options","shallowEqual","Error","useBabelRuntime","name","polyfills","usageGlobal","meta","utils","isRegenerator","injectGlobalImport","usagePure","path","pureName","_get","runtimeName","hub","file","get","replaceWith","injectDefaultImport","kind","obj1","obj2","JSON","stringify"],"mappings":";;AAGA,MAAMA,aAAa,GAAG,8CAA8C;AAQpE,YAAeC,cAAc,CAAU,CAAC;EAAEC,KAAK;EAAEC,OAAO;EAAEC;AAAM,CAAC,EAAEC,OAAO,KAAK;EAC7E,IAAI,CAACC,YAAY,CAACH,OAAO,EAAEC,KAAK,CAACD,OAAO,EAAE,CAAC,EAAE;IAC3C,MAAM,IAAII,KAAK,CACb,wEAAwE,GACtE,sEAAsE,GACtE,kEAAkE,GAClE,WACJ,CAAC;;EAGH,MAAM;IAAE,CAACP,aAAa,GAAG;MAAEQ,eAAe,GAAG;KAAO,GAAG;GAAI,GAAGH,OAAO;EAErE,OAAO;IACLI,IAAI,EAAE,aAAa;IAEnBC,SAAS,EAAE,CAAC,qBAAqB,CAAC;IAElCC,WAAWA,CAACC,IAAI,EAAEC,KAAK,EAAE;MACvB,IAAIC,aAAa,CAACF,IAAI,CAAC,EAAE;QACvBV,KAAK,CAAC,qBAAqB,CAAC;QAC5BW,KAAK,CAACE,kBAAkB,CAAC,gCAAgC,CAAC;;KAE7D;IACDC,SAASA,CAACJ,IAAI,EAAEC,KAAK,EAAEI,IAAI,EAAE;MAC3B,IAAIH,aAAa,CAACF,IAAI,CAAC,EAAE;QACvB,IAAIM,QAAQ,GAAG,qBAAqB;QACpC,IAAIV,eAAe,EAAE;UAAA,IAAAW,IAAA;UACnB,MAAMC,WAAW,IAAAD,IAAA,GACbF,IAAI,CAACI,GAAG,CAASC,IAAI,CAAgBC,GAAG,CACxC,0BACF,CAAC,YAAAJ,IAAA,GAAI,gBAAgB;UACvBD,QAAQ,GAAI,GAAEE,WAAY,cAAa;;QAGzCH,IAAI,CAACO,WAAW,CACdX,KAAK,CAACY,mBAAmB,CAACP,QAAQ,EAAE,qBAAqB,CAC3D,CAAC;;;GAGN;AACH,CAAC,CAAC;AAEF,MAAMJ,aAAa,GAAGF,IAAI,IACxBA,IAAI,CAACc,IAAI,KAAK,QAAQ,IAAId,IAAI,CAACH,IAAI,KAAK,oBAAoB;AAE9D,SAASH,YAAYA,CAACqB,IAAS,EAAEC,IAAS,EAAE;EAC1C,OAAOC,IAAI,CAACC,SAAS,CAACH,IAAI,CAAC,KAAKE,IAAI,CAACC,SAAS,CAACF,IAAI,CAAC;AACtD;;;;"}
|
47
node_modules/babel-plugin-polyfill-regenerator/lib/index.js
generated
vendored
Normal file
47
node_modules/babel-plugin-polyfill-regenerator/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var _helperDefinePolyfillProvider = _interopRequireDefault(require("@babel/helper-define-polyfill-provider"));
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
const runtimeCompat = "#__secret_key__@babel/runtime__compatibility";
|
||||
var _default = (0, _helperDefinePolyfillProvider.default)(({
|
||||
debug,
|
||||
targets,
|
||||
babel
|
||||
}, options) => {
|
||||
if (!shallowEqual(targets, babel.targets())) {
|
||||
throw new Error("This plugin does not use the targets option. Only preset-env's targets" + " or top-level targets need to be configured for this plugin to work." + " See https://github.com/babel/babel-polyfills/issues/36 for more" + " details.");
|
||||
}
|
||||
const {
|
||||
[runtimeCompat]: {
|
||||
useBabelRuntime = false
|
||||
} = {}
|
||||
} = options;
|
||||
return {
|
||||
name: "regenerator",
|
||||
polyfills: ["regenerator-runtime"],
|
||||
usageGlobal(meta, utils) {
|
||||
if (isRegenerator(meta)) {
|
||||
debug("regenerator-runtime");
|
||||
utils.injectGlobalImport("regenerator-runtime/runtime.js");
|
||||
}
|
||||
},
|
||||
usagePure(meta, utils, path) {
|
||||
if (isRegenerator(meta)) {
|
||||
let pureName = "regenerator-runtime";
|
||||
if (useBabelRuntime) {
|
||||
var _get;
|
||||
const runtimeName = (_get = path.hub.file.get("runtimeHelpersModuleName")) != null ? _get : "@babel/runtime";
|
||||
pureName = `${runtimeName}/regenerator`;
|
||||
}
|
||||
path.replaceWith(utils.injectDefaultImport(pureName, "regenerator-runtime"));
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
exports.default = _default;
|
||||
const isRegenerator = meta => meta.kind === "global" && meta.name === "regeneratorRuntime";
|
||||
function shallowEqual(obj1, obj2) {
|
||||
return JSON.stringify(obj1) === JSON.stringify(obj2);
|
||||
}
|
70
node_modules/babel-plugin-polyfill-regenerator/package.json
generated
vendored
Normal file
70
node_modules/babel-plugin-polyfill-regenerator/package.json
generated
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
{
|
||||
"_from": "babel-plugin-polyfill-regenerator@^0.5.2",
|
||||
"_id": "babel-plugin-polyfill-regenerator@0.5.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==",
|
||||
"_location": "/babel-plugin-polyfill-regenerator",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "babel-plugin-polyfill-regenerator@^0.5.2",
|
||||
"name": "babel-plugin-polyfill-regenerator",
|
||||
"escapedName": "babel-plugin-polyfill-regenerator",
|
||||
"rawSpec": "^0.5.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.5.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@babel/plugin-transform-runtime",
|
||||
"/@babel/preset-env"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz",
|
||||
"_shasum": "80d0f3e1098c080c8b5a65f41e9427af692dc326",
|
||||
"_spec": "babel-plugin-polyfill-regenerator@^0.5.2",
|
||||
"_where": "C:\\Users\\zhouxueli\\Desktop\\scheduling-app\\node_modules\\@babel\\plugin-transform-runtime",
|
||||
"bugs": {
|
||||
"url": "https://github.com/babel/babel-polyfills/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"@babel/helper-define-polyfill-provider": "^0.4.2"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "A Babel plugin to inject imports to regenerator-runtime",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.17.8",
|
||||
"@babel/helper-plugin-test-runner": "^7.16.7",
|
||||
"@babel/plugin-transform-regenerator": "~7.14.0"
|
||||
},
|
||||
"exports": {
|
||||
".": [
|
||||
{
|
||||
"import": "./esm/index.mjs",
|
||||
"default": "./lib/index.js"
|
||||
},
|
||||
"./lib/index.js"
|
||||
],
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"gitHead": "0e8cfb85899c8fb01728199d81fd37108e1668ab",
|
||||
"homepage": "https://github.com/babel/babel-polyfills#readme",
|
||||
"keywords": [
|
||||
"babel-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "babel-plugin-polyfill-regenerator",
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/babel/babel-polyfills.git",
|
||||
"directory": "packages/babel-plugin-polyfill-regenerator"
|
||||
},
|
||||
"version": "0.5.2"
|
||||
}
|
Reference in New Issue
Block a user