mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-04 12:04:54 +01:00
Updated to v1.9.9
This commit is contained in:
41
conf/site/node_modules/@babel/plugin-transform-runtime/package.json
generated
vendored
41
conf/site/node_modules/@babel/plugin-transform-runtime/package.json
generated
vendored
@@ -1,33 +1,33 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"@babel/plugin-transform-runtime@7.11.0",
|
||||
"@babel/plugin-transform-runtime@7.12.1",
|
||||
"/home/henry/Documents/git/Speedtest-tracker-docker/conf/site"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@babel/plugin-transform-runtime@7.11.0",
|
||||
"_id": "@babel/plugin-transform-runtime@7.11.0",
|
||||
"_from": "@babel/plugin-transform-runtime@7.12.1",
|
||||
"_id": "@babel/plugin-transform-runtime@7.12.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-LFEsP+t3wkYBlis8w6/kmnd6Kb1dxTd+wGJ8MlxTGzQo//ehtqlVL4S9DNUa53+dtPSQobN2CXx4d81FqC58cw==",
|
||||
"_integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==",
|
||||
"_location": "/@babel/plugin-transform-runtime",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@babel/plugin-transform-runtime@7.11.0",
|
||||
"raw": "@babel/plugin-transform-runtime@7.12.1",
|
||||
"name": "@babel/plugin-transform-runtime",
|
||||
"escapedName": "@babel%2fplugin-transform-runtime",
|
||||
"scope": "@babel",
|
||||
"rawSpec": "7.11.0",
|
||||
"rawSpec": "7.12.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "7.11.0"
|
||||
"fetchSpec": "7.12.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/laravel-mix"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.0.tgz",
|
||||
"_spec": "7.11.0",
|
||||
"_resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz",
|
||||
"_spec": "7.12.1",
|
||||
"_where": "/home/henry/Documents/git/Speedtest-tracker-docker/conf/site",
|
||||
"browser": {
|
||||
"./lib/get-runtime-path/index.js": "./lib/get-runtime-path/browser.js",
|
||||
@@ -37,22 +37,23 @@
|
||||
"url": "https://github.com/babel/babel/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "^7.10.4",
|
||||
"@babel/helper-module-imports": "^7.12.1",
|
||||
"@babel/helper-plugin-utils": "^7.10.4",
|
||||
"resolve": "^1.8.1",
|
||||
"semver": "^5.5.1"
|
||||
},
|
||||
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.11.0",
|
||||
"@babel/helper-plugin-test-runner": "^7.10.4",
|
||||
"@babel/helpers": "^7.10.4",
|
||||
"@babel/plugin-transform-typeof-symbol": "^7.10.4",
|
||||
"@babel/preset-env": "^7.11.0",
|
||||
"@babel/runtime": "^7.11.0",
|
||||
"@babel/runtime-corejs3": "^7.11.0",
|
||||
"@babel/template": "^7.10.4",
|
||||
"@babel/types": "^7.11.0"
|
||||
"@babel/core": "^7.12.1",
|
||||
"@babel/helper-plugin-test-runner": "7.10.4",
|
||||
"@babel/helpers": "^7.12.1",
|
||||
"@babel/plugin-transform-typeof-symbol": "^7.12.1",
|
||||
"@babel/preset-env": "^7.12.1",
|
||||
"@babel/runtime": "^7.12.1",
|
||||
"@babel/runtime-corejs3": "^7.12.1",
|
||||
"@babel/template": "7.10.4",
|
||||
"@babel/types": "^7.12.1",
|
||||
"make-dir": "^2.1.0"
|
||||
},
|
||||
"homepage": "https://github.com/babel/babel#readme",
|
||||
"keywords": [
|
||||
@@ -72,5 +73,5 @@
|
||||
"url": "git+https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-plugin-transform-runtime"
|
||||
},
|
||||
"version": "7.11.0"
|
||||
"version": "7.12.1"
|
||||
}
|
||||
|
||||
7
conf/site/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/browser.js
generated
vendored
Normal file
7
conf/site/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/browser.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function (moduleName, dirname, absoluteRuntime) {
|
||||
if (absoluteRuntime === false) return moduleName;
|
||||
|
||||
throw new Error(
|
||||
"The 'absoluteRuntime' option is not supported when using @babel/standalone.",
|
||||
);
|
||||
}
|
||||
30
conf/site/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/index.js
generated
vendored
Normal file
30
conf/site/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/index.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import path from "path";
|
||||
import resolve from "resolve";
|
||||
|
||||
export default function (moduleName, dirname, absoluteRuntime) {
|
||||
if (absoluteRuntime === false) return moduleName;
|
||||
|
||||
return resolveAbsoluteRuntime(
|
||||
moduleName,
|
||||
path.resolve(dirname, absoluteRuntime === true ? "." : absoluteRuntime),
|
||||
);
|
||||
}
|
||||
|
||||
function resolveAbsoluteRuntime(moduleName: string, dirname: string) {
|
||||
try {
|
||||
return path
|
||||
.dirname(resolve.sync(`${moduleName}/package.json`, { basedir: dirname }))
|
||||
.replace(/\\/g, "/");
|
||||
} catch (err) {
|
||||
if (err.code !== "MODULE_NOT_FOUND") throw err;
|
||||
|
||||
throw Object.assign(
|
||||
new Error(`Failed to resolve "${moduleName}" relative to "${dirname}"`),
|
||||
{
|
||||
code: "BABEL_RUNTIME_NOT_FOUND",
|
||||
runtime: moduleName,
|
||||
dirname,
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user