Compare commits
13 Commits
2021-10-de
...
initialize
| Author | SHA1 | Date | |
|---|---|---|---|
| 41fd81a8f5 | |||
| bfa97fe782 | |||
| 1518210ee6 | |||
| b1facb18de | |||
| 2c38b52ffb | |||
| 44e7cf615c | |||
| 983ab3bbc0 | |||
| 05dfb60683 | |||
|
|
a8e859bb05 | ||
| f3c530b2c9 | |||
| a12f1771c8 | |||
| fad999bf52 | |||
| 2707780f7e |
@@ -1507,7 +1507,7 @@ A notable change is the addition of https://github.com/babel/babel/pull/8485 whi
|
||||
|
||||
## v7.0.0-rc.1 (2018-08-09)
|
||||
|
||||
Same as rc.0 but fixes the peerDep issue #8443. It's changed to just be ^7.0.0-0
|
||||
Same as rc.0 but fixes the peerDep issue #8443. It's changed to just be ^7.0.0-0 || csx
|
||||
|
||||
## v7.0.0-rc.0 (2018-08-09)
|
||||
|
||||
|
||||
80
Makefile
80
Makefile
@@ -14,9 +14,6 @@ EMPTY :=
|
||||
SPACE := $(EMPTY) $(EMPTY)
|
||||
COMMA_SEPARATED_SOURCES = $(subst $(SPACE),$(COMMA),$(SOURCES))
|
||||
|
||||
YARN := yarn --silent
|
||||
NODE := $(YARN) node
|
||||
|
||||
|
||||
.PHONY: build build-dist watch lint fix clean test-clean test-only test test-ci publish bootstrap
|
||||
|
||||
@@ -26,10 +23,10 @@ ifneq ("$(BABEL_COVERAGE)", "true")
|
||||
endif
|
||||
|
||||
build-bundle: clean clean-lib
|
||||
$(YARN) gulp build
|
||||
yarn gulp build
|
||||
$(MAKE) generate-standalone generate-type-helpers
|
||||
# call build again as the generated files might need to be compiled again.
|
||||
$(YARN) gulp build
|
||||
yarn gulp build
|
||||
$(MAKE) build-typings
|
||||
$(MAKE) build-dist
|
||||
|
||||
@@ -37,18 +34,18 @@ build-bundle-ci: bootstrap-only
|
||||
$(MAKE) build-bundle
|
||||
|
||||
generate-standalone:
|
||||
$(NODE) packages/babel-standalone/scripts/generate.js
|
||||
node packages/babel-standalone/scripts/generate.js
|
||||
|
||||
generate-type-helpers:
|
||||
$(NODE) packages/babel-types/scripts/generateTypeHelpers.js
|
||||
node packages/babel-types/scripts/generateTypeHelpers.js
|
||||
|
||||
build-typings: build-flow-typings build-typescript-typings
|
||||
|
||||
build-flow-typings:
|
||||
$(NODE) packages/babel-types/scripts/generators/flow.js > packages/babel-types/lib/index.js.flow
|
||||
node packages/babel-types/scripts/generators/flow.js > packages/babel-types/lib/index.js.flow
|
||||
|
||||
build-typescript-typings:
|
||||
$(NODE) packages/babel-types/scripts/generators/typescript.js > packages/babel-types/lib/index.d.ts
|
||||
node packages/babel-types/scripts/generators/typescript.js > packages/babel-types/lib/index.d.ts
|
||||
|
||||
build-standalone: build-babel-standalone build-preset-env-standalone
|
||||
|
||||
@@ -56,16 +53,16 @@ build-standalone-ci: build-bundle-ci
|
||||
$(MAKE) build-standalone
|
||||
|
||||
build-babel-standalone:
|
||||
$(YARN) gulp build-babel-standalone
|
||||
yarn gulp build-babel-standalone
|
||||
|
||||
build-preset-env-standalone:
|
||||
$(YARN) gulp build-babel-preset-env-standalone
|
||||
yarn gulp build-babel-preset-env-standalone
|
||||
|
||||
prepublish-build-standalone:
|
||||
BABEL_ENV=production IS_PUBLISH=true $(YARN) gulp build-babel-standalone
|
||||
BABEL_ENV=production IS_PUBLISH=true yarn gulp build-babel-standalone
|
||||
|
||||
prepublish-build-preset-env-standalone:
|
||||
BABEL_ENV=production IS_PUBLISH=true $(YARN) gulp build-babel-preset-env-standalone
|
||||
BABEL_ENV=production IS_PUBLISH=true yarn gulp build-babel-preset-env-standalone
|
||||
|
||||
build-dist: build-polyfill-dist build-plugin-transform-runtime-dist
|
||||
|
||||
@@ -75,17 +72,17 @@ build-polyfill-dist:
|
||||
|
||||
build-plugin-transform-runtime-dist:
|
||||
cd packages/babel-plugin-transform-runtime; \
|
||||
$(NODE) scripts/build-dist.js
|
||||
node scripts/build-dist.js
|
||||
|
||||
build-no-bundle: clean clean-lib
|
||||
BABEL_ENV=development $(YARN) gulp build-no-bundle
|
||||
BABEL_ENV=development yarn gulp build-no-bundle
|
||||
# Ensure that build artifacts for types are created during local
|
||||
# development too.
|
||||
$(MAKE) generate-type-helpers
|
||||
$(MAKE) build-typings
|
||||
|
||||
watch: build-no-bundle
|
||||
BABEL_ENV=development $(YARN) gulp watch
|
||||
BABEL_ENV=development yarn gulp watch
|
||||
|
||||
code-quality-ci: flowcheck-ci lint-ci
|
||||
|
||||
@@ -95,10 +92,10 @@ flowcheck-ci: bootstrap-flowcheck
|
||||
code-quality: flow lint
|
||||
|
||||
flow:
|
||||
$(YARN) flow check --strip-root
|
||||
yarn flow check --strip-root
|
||||
|
||||
bootstrap-flowcheck: bootstrap-only
|
||||
$(YARN) gulp build-babel-types
|
||||
yarn gulp build-babel-types
|
||||
$(MAKE) build-typings
|
||||
|
||||
lint-ci: lint-js-ci lint-ts-ci
|
||||
@@ -112,7 +109,7 @@ lint-ts-ci: bootstrap-flowcheck
|
||||
lint: lint-js lint-ts
|
||||
|
||||
lint-js:
|
||||
$(YARN) eslint scripts $(SOURCES) '*.js' --format=codeframe
|
||||
yarn eslint scripts $(SOURCES) '*.js' --format=codeframe
|
||||
|
||||
lint-ts:
|
||||
scripts/lint-ts-typings.sh
|
||||
@@ -120,10 +117,10 @@ lint-ts:
|
||||
fix: fix-json fix-js
|
||||
|
||||
fix-js:
|
||||
$(YARN) eslint scripts $(SOURCES) '*.js' --format=codeframe --fix
|
||||
yarn eslint scripts $(SOURCES) '*.js' --format=codeframe --fix
|
||||
|
||||
fix-json:
|
||||
$(YARN) prettier "{$(COMMA_SEPARATED_SOURCES)}/*/test/fixtures/**/options.json" --write --loglevel warn
|
||||
yarn prettier "{$(COMMA_SEPARATED_SOURCES)}/*/test/fixtures/**/options.json" --write --loglevel warn
|
||||
|
||||
clean: test-clean
|
||||
rm -f .npmrc
|
||||
@@ -136,17 +133,18 @@ test-clean:
|
||||
$(foreach source, $(SOURCES), \
|
||||
$(call clean-source-test, $(source)))
|
||||
|
||||
# Does not work on Windows; use "$(YARN) jest" instead
|
||||
# Does not work on Windows; use "yarn jest" instead
|
||||
test-only:
|
||||
BABEL_ENV=test ./scripts/test.sh
|
||||
$(MAKE) test-clean
|
||||
YARN jest
|
||||
#$(MAKE) test-clean
|
||||
|
||||
test: lint test-only
|
||||
|
||||
test-ci: jest-ci
|
||||
|
||||
jest-ci: build-standalone-ci
|
||||
BABEL_ENV=test $(YARN) jest --maxWorkers=4 --ci
|
||||
BABEL_ENV=test yarn jest --maxWorkers=4 --ci
|
||||
$(MAKE) test-clean
|
||||
|
||||
# Does not work on Windows
|
||||
@@ -163,13 +161,13 @@ bootstrap-flow:
|
||||
cd build/flow && git checkout $(FLOW_COMMIT)
|
||||
|
||||
test-flow:
|
||||
$(NODE) scripts/parser-tests/flow
|
||||
node scripts/parser-tests/flow
|
||||
|
||||
test-flow-ci: build-bundle-ci bootstrap-flow
|
||||
$(MAKE) test-flow
|
||||
|
||||
test-flow-update-whitelist:
|
||||
$(NODE) scripts/parser-tests/flow --update-whitelist
|
||||
node scripts/parser-tests/flow --update-whitelist
|
||||
|
||||
bootstrap-typescript:
|
||||
rm -rf ./build/typescript
|
||||
@@ -178,13 +176,13 @@ bootstrap-typescript:
|
||||
cd build/typescript && git checkout $(TYPESCRIPT_COMMIT)
|
||||
|
||||
test-typescript:
|
||||
$(NODE) scripts/parser-tests/typescript
|
||||
node scripts/parser-tests/typescript
|
||||
|
||||
test-typescript-ci: build-bundle-ci bootstrap-typescript
|
||||
$(MAKE) test-typescript
|
||||
|
||||
test-typescript-update-whitelist:
|
||||
$(NODE) scripts/parser-tests/typescript --update-whitelist
|
||||
node scripts/parser-tests/typescript --update-whitelist
|
||||
|
||||
bootstrap-test262:
|
||||
rm -rf build/test262
|
||||
@@ -193,13 +191,13 @@ bootstrap-test262:
|
||||
cd build/test262 && git checkout $(TEST262_COMMIT)
|
||||
|
||||
test-test262:
|
||||
$(NODE) scripts/parser-tests/test262
|
||||
node scripts/parser-tests/test262
|
||||
|
||||
test-test262-ci: build-bundle-ci bootstrap-test262
|
||||
$(MAKE) test-test262
|
||||
|
||||
test-test262-update-whitelist:
|
||||
$(NODE) scripts/parser-tests/test262 --update-whitelist
|
||||
node scripts/parser-tests/test262 --update-whitelist
|
||||
|
||||
# Does not work on Windows
|
||||
clone-license:
|
||||
@@ -212,15 +210,21 @@ prepublish-build: clean-lib clean-runtime-helpers
|
||||
prepublish:
|
||||
$(MAKE) bootstrap-only
|
||||
$(MAKE) prepublish-build
|
||||
$(MAKE) test
|
||||
#$(MAKE) test #fuck your tests babel...
|
||||
|
||||
new-version:
|
||||
git pull --rebase
|
||||
$(YARN) lerna version --force-publish=$(FORCE_PUBLISH)
|
||||
yarn lerna version --force-publish=$(FORCE_PUBLISH)
|
||||
|
||||
version-cerxes:
|
||||
yarn lerna version prerelease --allow-branch initializers-fix --preid csx
|
||||
|
||||
publish-cerxes: prepublish
|
||||
yarn lerna publish --registry="https://npm.cerxes.net" --force-publish --allow-branch initializer-fix-v7.8.3 --dist-tag csx --skip-git --exact
|
||||
|
||||
# NOTE: Run make new-version first
|
||||
publish: prepublish
|
||||
$(YARN) lerna publish from-git
|
||||
yarn lerna publish from-git
|
||||
$(MAKE) clean
|
||||
|
||||
publish-ci: prepublish
|
||||
@@ -230,7 +234,7 @@ else
|
||||
echo "Missing NPM_TOKEN env var"
|
||||
exit 1
|
||||
endif
|
||||
$(YARN) lerna publish from-git --yes
|
||||
yarn lerna publish from-git --yes
|
||||
rm -f .npmrc
|
||||
$(MAKE) clean
|
||||
|
||||
@@ -240,8 +244,8 @@ ifneq ("$(I_AM_USING_VERDACCIO)", "I_AM_SURE")
|
||||
exit 1
|
||||
endif
|
||||
$(MAKE) prepublish-build
|
||||
$(YARN) lerna version patch --force-publish=$(FORCE_PUBLISH) --no-push --yes --tag-version-prefix="version-e2e-test-"
|
||||
$(YARN) lerna publish from-git --registry http://localhost:4873 --yes --tag-version-prefix="version-e2e-test-"
|
||||
yarn lerna version patch --force-publish=$(FORCE_PUBLISH) --no-push --yes --tag-version-prefix="version-e2e-test-"
|
||||
yarn lerna publish from-git --registry http://localhost:4873 --yes --tag-version-prefix="version-e2e-test-"
|
||||
$(MAKE) clean
|
||||
|
||||
publish-eslint:
|
||||
@@ -256,7 +260,7 @@ yarn-install: clean-all
|
||||
|
||||
lerna-bootstrap: yarn-install
|
||||
# todo: remove `-- -- --ignore-engines` in Babel 8
|
||||
$(YARN) lerna bootstrap -- -- --ignore-engines
|
||||
yarn lerna bootstrap -- -- --ignore-engines
|
||||
|
||||
bootstrap: bootstrap-only
|
||||
$(MAKE) build
|
||||
@@ -309,7 +313,7 @@ define clean-source-all
|
||||
endef
|
||||
|
||||
define set-json-field
|
||||
$(NODE) -e "\
|
||||
node -e "\
|
||||
require('fs').writeFileSync('$1'.trim(), \
|
||||
JSON.stringify({ ...require('$1'.trim()), $2: $3 }, null, 2) + '\\n' \
|
||||
)"
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"@babel/plugin-syntax-object-rest-spread": "^7.7.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.4",
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"@babel/plugin-syntax-optional-catch-binding": "^7.7.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.4",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/eslint-config-internal",
|
||||
"version": "0.0.0",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "The Babel Team's ESLint configuration. Since it's internal, it might not respect semver.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/eslint-parser",
|
||||
"version": "0.0.0",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "ESLint parser that allows for linting of experimental syntax transformed by Babel",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"license": "MIT",
|
||||
@@ -28,8 +28,8 @@
|
||||
"semver": "^6.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/eslint-shared-fixtures": "*",
|
||||
"@babel/core": "^7.2.0",
|
||||
"@babel/eslint-shared-fixtures": "7.8.3-csx.2",
|
||||
"dedent": "^0.7.0",
|
||||
"eslint": "^6.0.1",
|
||||
"espree": "^6.0.0"
|
||||
|
||||
@@ -7,7 +7,7 @@ import packageJson from "../package.json";
|
||||
const SUPPORTED_BABEL_VERSION_RANGE =
|
||||
packageJson.peerDependencies["@babel/core"];
|
||||
const IS_RUNNING_SUPPORTED_VERSION = semver.satisfies(
|
||||
CURRENT_BABEL_VERSION,
|
||||
semver.coerce(CURRENT_BABEL_VERSION).raw,
|
||||
SUPPORTED_BABEL_VERSION_RANGE,
|
||||
);
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/eslint-plugin-development",
|
||||
"version": "0.0.0",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "ESLint rules that enforce best practices in the development of Babel plugins.",
|
||||
"private": true,
|
||||
"keywords": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/eslint-plugin",
|
||||
"version": "0.0.0",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Companion rules for @babel/eslint-parser",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
@@ -33,8 +33,8 @@
|
||||
"eslint-rule-composer": "^0.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/eslint-shared-fixtures": "*",
|
||||
"@babel/eslint-parser": "*",
|
||||
"@babel/eslint-parser": "7.8.3-csx.2",
|
||||
"@babel/eslint-shared-fixtures": "7.8.3-csx.2",
|
||||
"eslint": "^6.0.0",
|
||||
"lodash.clonedeep": "^4.5.0"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/eslint-shared-fixtures",
|
||||
"version": "0.0.0",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Shared fixtures for testing @babel/eslint-* packages",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"changelog": {
|
||||
"repo": "babel/babel",
|
||||
"cacheDir": ".changelog",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/cli",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel command line.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -32,11 +32,11 @@
|
||||
"chokidar": "^2.1.8"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-fixtures": "^7.8.3",
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-fixtures": "7.8.3-csx.2",
|
||||
"rimraf": "^3.0.0"
|
||||
},
|
||||
"bin": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/code-frame",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,7 +11,7 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/highlight": "^7.8.3"
|
||||
"@babel/highlight": "7.8.3-csx.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chalk": "^2.0.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/core",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel compiler core.",
|
||||
"main": "lib/index.js",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
@@ -39,13 +39,13 @@
|
||||
"./src/transform-file.js": "./src/transform-file-browser.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.8.3",
|
||||
"@babel/generator": "^7.8.3",
|
||||
"@babel/helpers": "^7.8.3",
|
||||
"@babel/parser": "^7.8.3",
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3",
|
||||
"@babel/code-frame": "7.8.3-csx.2",
|
||||
"@babel/generator": "7.8.3-csx.2",
|
||||
"@babel/helpers": "7.8.3-csx.2",
|
||||
"@babel/parser": "7.8.3-csx.2",
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2",
|
||||
"convert-source-map": "^1.7.0",
|
||||
"debug": "^4.1.0",
|
||||
"gensync": "^1.0.0-beta.1",
|
||||
@@ -56,6 +56,6 @@
|
||||
"source-map": "^0.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-transform-fixture-test-runner": "^7.8.3"
|
||||
"@babel/helper-transform-fixture-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ function assertVersion(range: string | number): void {
|
||||
throw new Error("Expected string or integer value.");
|
||||
}
|
||||
|
||||
if (semver.satisfies(coreVersion, range)) return;
|
||||
if (semver.satisfies(semver.coerce(coreVersion).raw, range)) return;
|
||||
|
||||
const limit = Error.stackTraceLimit;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/generator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Turns an AST into code.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -14,13 +14,13 @@
|
||||
"lib"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3",
|
||||
"@babel/types": "7.8.3-csx.2",
|
||||
"jsesc": "^2.5.1",
|
||||
"lodash": "^4.17.13",
|
||||
"source-map": "^0.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-fixtures": "^7.8.3",
|
||||
"@babel/parser": "^7.8.3"
|
||||
"@babel/helper-fixtures": "7.8.3-csx.2",
|
||||
"@babel/parser": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-annotate-as-pure",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to annotate paths and nodes with #__PURE__ comment",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-bindify-decorators",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to bindify decorators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-bindify-decorators",
|
||||
"license": "MIT",
|
||||
@@ -9,7 +9,7 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-builder-binary-assignment-operator-visitor",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to build binary assignment operator visitors",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor",
|
||||
"license": "MIT",
|
||||
@@ -9,7 +9,7 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-explode-assignable-expression": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-explode-assignable-expression": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-builder-react-jsx",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to build react jsx",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx",
|
||||
"license": "MIT",
|
||||
@@ -9,7 +9,7 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3",
|
||||
"@babel/types": "7.8.3-csx.2",
|
||||
"esutils": "^2.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-call-delegate",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to call delegate",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate",
|
||||
"license": "MIT",
|
||||
@@ -9,8 +9,8 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-hoist-variables": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-hoist-variables": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"name": "@babel/helper-compilation-targets",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"author": "The Babel Team (https://babeljs.io/team)",
|
||||
"license": "MIT",
|
||||
"description": "Engine compat data used in @babel/preset-env",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets",
|
||||
"main": "lib/index.js",
|
||||
"exports": false,
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
@@ -25,7 +27,7 @@
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-create-class-features-plugin",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"author": "The Babel Team (https://babeljs.io/team)",
|
||||
"license": "MIT",
|
||||
"description": "Compile class public and private fields, private methods and decorators to ES6",
|
||||
@@ -14,18 +14,19 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "^7.8.3",
|
||||
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
||||
"@babel/helper-optimise-call-expression": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-replace-supers": "^7.8.3",
|
||||
"@babel/helper-split-export-declaration": "^7.8.3"
|
||||
"@babel/helper-function-name": "7.8.3-csx.2",
|
||||
"@babel/helper-member-expression-to-functions": "7.8.3-csx.2",
|
||||
"@babel/helper-optimise-call-expression": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/helper-replace-supers": "7.8.3-csx.2",
|
||||
"@babel/helper-split-export-declaration": "7.8.3-csx.2",
|
||||
"semver": "^5.5.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import nameFunction from "@babel/helper-function-name";
|
||||
import splitExportDeclaration from "@babel/helper-split-export-declaration";
|
||||
import semver from "semver";
|
||||
import {
|
||||
buildPrivateNamesNodes,
|
||||
buildPrivateNamesMap,
|
||||
@@ -27,7 +28,10 @@ export { FEATURES, injectInitialization };
|
||||
// as 70000100005. This method is easier than using a semver-parsing
|
||||
// package, but it breaks if we release x.y.z where x, y or z are
|
||||
// greater than 99_999.
|
||||
const version = pkg.version.split(".").reduce((v, x) => v * 1e5 + +x, 0);
|
||||
const version = semver
|
||||
.coerce(pkg.version)
|
||||
.raw.split(".")
|
||||
.reduce((v, x) => v * 1e5 + +x, 0);
|
||||
const versionKey = "@babel/plugin-class-features/version";
|
||||
|
||||
export function createClassFeaturePlugin({
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-create-regexp-features-plugin",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"author": "The Babel Team (https://babeljs.io/team)",
|
||||
"license": "MIT",
|
||||
"description": "Compile ESNext Regular Expressions to ES5",
|
||||
@@ -18,14 +18,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-regex": "^7.8.3",
|
||||
"regexpu-core": "^4.6.0"
|
||||
"@babel/helper-regex": "7.8.3-csx.2",
|
||||
"regexpu-core": "^4.6.0",
|
||||
"semver": "^5.5.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import semver from "semver";
|
||||
import rewritePattern from "regexpu-core";
|
||||
import {
|
||||
featuresKey,
|
||||
@@ -16,7 +17,10 @@ import { pullFlag } from "@babel/helper-regex";
|
||||
// as 70000100005. This method is easier than using a semver-parsing
|
||||
// package, but it breaks if we release x.y.z where x, y or z are
|
||||
// greater than 99_999.
|
||||
const version = pkg.version.split(".").reduce((v, x) => v * 1e5 + +x, 0);
|
||||
const version = semver
|
||||
.coerce(pkg.version)
|
||||
.raw.split(".")
|
||||
.reduce((v, x) => v * 1e5 + +x, 0);
|
||||
const versionKey = "@babel/plugin-regexp-features/version";
|
||||
|
||||
export function createRegExpFeaturePlugin({ name, feature, options = {} }) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-define-map",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to define a map",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map",
|
||||
"license": "MIT",
|
||||
@@ -9,8 +9,8 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "^7.8.3",
|
||||
"@babel/types": "^7.8.3",
|
||||
"@babel/helper-function-name": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2",
|
||||
"lodash": "^4.17.13"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-explode-assignable-expression",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to explode an assignable expression",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression",
|
||||
"license": "MIT",
|
||||
@@ -9,7 +9,7 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-explode-class",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to explode class",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-class",
|
||||
"license": "MIT",
|
||||
@@ -9,8 +9,8 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-bindify-decorators": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-bindify-decorators": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-fixtures",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to support fixtures",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-function-name",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to change the property 'name' of every function",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name",
|
||||
"license": "MIT",
|
||||
@@ -9,8 +9,8 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-get-function-arity": "^7.8.3",
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-get-function-arity": "7.8.3-csx.2",
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-get-function-arity",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to get function arity",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-hoist-variables",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to hoist variables",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-member-expression-to-functions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to replace certain member expressions with function calls",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions",
|
||||
"license": "MIT",
|
||||
@@ -10,6 +10,6 @@
|
||||
"main": "lib/index.js",
|
||||
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-module-imports",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel helper functions for inserting module loads",
|
||||
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,9 +11,9 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-module-transforms",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel helper functions for implementing ES6 module transformations",
|
||||
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,11 +11,11 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "^7.8.3",
|
||||
"@babel/helper-simple-access": "^7.8.3",
|
||||
"@babel/helper-split-export-declaration": "^7.8.3",
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/types": "^7.8.3",
|
||||
"@babel/helper-module-imports": "7.8.3-csx.2",
|
||||
"@babel/helper-simple-access": "7.8.3-csx.2",
|
||||
"@babel/helper-split-export-declaration": "7.8.3-csx.2",
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2",
|
||||
"lodash": "^4.17.13"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-optimise-call-expression",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to optimise call expression",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-plugin-test-runner",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to support test runner",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-test-runner",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-transform-fixture-test-runner": "^7.8.3"
|
||||
"@babel/helper-transform-fixture-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "General utilities for plugins to use",
|
||||
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-regex",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to check for literal RegEx",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-remap-async-to-generator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to remap async functions to generators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator",
|
||||
"license": "MIT",
|
||||
@@ -9,10 +9,10 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "^7.8.3",
|
||||
"@babel/helper-wrap-function": "^7.8.3",
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-annotate-as-pure": "7.8.3-csx.2",
|
||||
"@babel/helper-wrap-function": "7.8.3-csx.2",
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-replace-supers",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper function to replace supers",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers",
|
||||
"license": "MIT",
|
||||
@@ -9,9 +9,9 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
||||
"@babel/helper-optimise-call-expression": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-member-expression-to-functions": "7.8.3-csx.2",
|
||||
"@babel/helper-optimise-call-expression": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-simple-access",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel helper for ensuring that access to a given value is performed through simple accesses",
|
||||
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,7 +11,7 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-split-export-declaration",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration",
|
||||
"license": "MIT",
|
||||
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-transform-fixture-test-runner",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Transform test runner for @babel/helper-fixtures module",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,10 +11,10 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-transform-fixture-test-runner",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.8.3",
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-fixtures": "^7.8.3",
|
||||
"@babel/polyfill": "^7.8.3",
|
||||
"@babel/code-frame": "7.8.3-csx.2",
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-fixtures": "7.8.3-csx.2",
|
||||
"@babel/polyfill": "7.8.3-csx.2",
|
||||
"babel-check-duplicated-nodes": "^1.0.0",
|
||||
"jest": "^24.8.0",
|
||||
"jest-diff": "^24.8.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-wrap-function",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Helper to wrap functions inside a function call.",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function",
|
||||
"license": "MIT",
|
||||
@@ -9,9 +9,9 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "^7.8.3",
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/helper-function-name": "7.8.3-csx.2",
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helpers",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Collection of helper functions used by Babel transforms.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -11,11 +11,11 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helpers",
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/template": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3",
|
||||
"@babel/types": "^7.8.3"
|
||||
"@babel/template": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2",
|
||||
"@babel/types": "7.8.3-csx.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1056,12 +1056,27 @@ helpers.initializerDefineProperty = helper("7.0.0-beta.0")`
|
||||
export default function _initializerDefineProperty(target, property, descriptor, context){
|
||||
if (!descriptor) return;
|
||||
|
||||
Object.defineProperty(target, property, {
|
||||
if(descriptor.set){
|
||||
Object.defineProperty(target, property, {
|
||||
get: descriptor.get,
|
||||
set: descriptor.set,
|
||||
configurable: descriptor.configurable,
|
||||
enumerable: descriptor.enumerable
|
||||
});
|
||||
|
||||
if(descriptor.initializer){
|
||||
descriptor.set.call(target, descriptor.initializer.call(context));
|
||||
}else if(descriptor.value!==undefined){
|
||||
descriptor.set.call(target, descriptor.value);
|
||||
}
|
||||
}else{
|
||||
Object.defineProperty(target, property, {
|
||||
enumerable: descriptor.enumerable,
|
||||
configurable: descriptor.configurable,
|
||||
writable: descriptor.writable,
|
||||
value: descriptor.initializer ? descriptor.initializer.call(context) : void 0,
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/highlight",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Syntax highlight JavaScript strings for output in terminals.",
|
||||
"author": "suchipi <me@suchipi.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/node",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel command line",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -19,7 +19,7 @@
|
||||
"compiler"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/register": "^7.8.3",
|
||||
"@babel/register": "7.8.3-csx.2",
|
||||
"commander": "^4.0.1",
|
||||
"core-js": "^3.2.1",
|
||||
"lodash": "^4.17.13",
|
||||
@@ -29,12 +29,12 @@
|
||||
"v8flags": "^3.1.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-fixtures": "^7.8.3",
|
||||
"@babel/runtime": "^7.8.3",
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-fixtures": "7.8.3-csx.2",
|
||||
"@babel/runtime": "7.8.3-csx.2",
|
||||
"fs-readdir-recursive": "^1.0.0",
|
||||
"make-dir": "^2.1.0",
|
||||
"rimraf": "^3.0.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/parser",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "A JavaScript parser",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
@@ -28,8 +28,8 @@
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/code-frame": "^7.8.3",
|
||||
"@babel/helper-fixtures": "^7.8.3",
|
||||
"@babel/code-frame": "7.8.3-csx.2",
|
||||
"@babel/helper-fixtures": "7.8.3-csx.2",
|
||||
"charcodes": "^0.2.0",
|
||||
"unicode-12.0.0": "^0.7.9"
|
||||
},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-external-helpers",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "This plugin contains helper functions that’ll be placed at the top of the generated code",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-external-helpers",
|
||||
"license": "MIT",
|
||||
@@ -12,13 +12,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-async-generator-functions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Turn async generator functions into ES2015 generators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions",
|
||||
"license": "MIT",
|
||||
@@ -12,15 +12,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-remap-async-to-generator": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/helper-remap-async-to-generator": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-async-generators": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-class-properties",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-create-class-features-plugin": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var _class, _descriptor, _descriptor2, _temp;
|
||||
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; if (descriptor.set) { Object.defineProperty(target, property, { get: descriptor.get, set: descriptor.set, configurable: descriptor.configurable, enumerable: descriptor.enumerable }); if (descriptor.initializer) { descriptor.set.call(target, descriptor.initializer.call(context)); } else if (descriptor.value !== undefined) { descriptor.set.call(target, descriptor.value); } } else { Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); } }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var _class, _descriptor, _descriptor2, _temp;
|
||||
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; if (descriptor.set) { Object.defineProperty(target, property, { get: descriptor.get, set: descriptor.set, configurable: descriptor.configurable, enumerable: descriptor.enumerable }); if (descriptor.initializer) { descriptor.set.call(target, descriptor.initializer.call(context)); } else if (descriptor.value !== undefined) { descriptor.set.call(target, descriptor.value); } } else { Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); } }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var _class, _descriptor, _descriptor2, _temp;
|
||||
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; if (descriptor.set) { Object.defineProperty(target, property, { get: descriptor.get, set: descriptor.set, configurable: descriptor.configurable, enumerable: descriptor.enumerable }); if (descriptor.initializer) { descriptor.set.call(target, descriptor.initializer.call(context)); } else if (descriptor.value !== undefined) { descriptor.set.call(target, descriptor.value); } } else { Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); } }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ let _Symbol$search;
|
||||
|
||||
var _class, _descriptor, _temp;
|
||||
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
||||
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; if (descriptor.set) { Object.defineProperty(target, property, { get: descriptor.get, set: descriptor.set, configurable: descriptor.configurable, enumerable: descriptor.enumerable }); if (descriptor.initializer) { descriptor.set.call(target, descriptor.initializer.call(context)); } else if (descriptor.value !== undefined) { descriptor.set.call(target, descriptor.value); } } else { Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); } }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-decorators",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"author": "Logan Smyth <loganfsmyth@gmail.com>",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
@@ -15,15 +15,15 @@
|
||||
"decorators"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-decorators": "^7.8.3"
|
||||
"@babel/helper-create-class-features-plugin": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-decorators": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-do-expressions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile do expressions to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-do-expressions",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-do-expressions": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-do-expressions": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-dynamic-import",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Transform import() expressions",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-export-default-from",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile export default to ES2015",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-default-from",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-export-default-from": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-export-default-from": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-export-namespace-from",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile export namespace to ES2015",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-namespace-from",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-export-namespace-from": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-function-bind",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile function bind operator to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-function-bind",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-function-bind": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-function-bind": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-function-sent",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile the function.sent meta property to valid ES2015 code",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-function-sent",
|
||||
"license": "MIT",
|
||||
@@ -12,15 +12,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-wrap-function": "^7.8.3",
|
||||
"@babel/plugin-syntax-function-sent": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/helper-wrap-function": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-function-sent": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-json-strings",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-json-strings": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-logical-assignment-operators",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Transforms logical assignment operators into short-circuited assignments",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-logical-assignment-operators",
|
||||
"license": "MIT",
|
||||
@@ -12,16 +12,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-logical-assignment-operators": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-logical-assignment-operators": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-nullish-coalescing-operator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Remove nullish coalescing operator",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-numeric-separator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Remove numeric separators from Decimal, Binary, Hex and Octal literals",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-numeric-separator",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-numeric-separator": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-numeric-separator": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-object-rest-spread",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile object rest and spread to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-object-rest-spread": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-optional-catch-binding",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile optional catch bindings",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-optional-chaining",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Transform optional chaining operators into a series of nil checks",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining",
|
||||
"license": "MIT",
|
||||
@@ -12,15 +12,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3",
|
||||
"@babel/plugin-transform-block-scoping": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2",
|
||||
"@babel/plugin-transform-block-scoping": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-partial-application",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Introduces a new ? token in an argument list which allows for partially applying an argument list to a call expression",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-partial-application",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-partial-application": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-partial-application": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-pipeline-operator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Transform pipeline operator into call expressions",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-pipeline-operator",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-pipeline-operator": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-pipeline-operator": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-private-methods",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "This plugin transforms private class methods",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-private-methods",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-create-class-features-plugin": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-throw-expressions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Wraps Throw Expressions in an IIFE",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-throw-expressions",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/plugin-syntax-throw-expressions": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/plugin-syntax-throw-expressions": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-proposal-unicode-property-regex",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile Unicode property escapes in Unicode regular expressions to ES5.",
|
||||
"homepage": "https://babeljs.io/",
|
||||
"license": "MIT",
|
||||
@@ -22,14 +22,14 @@
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex",
|
||||
"bugs": "https://github.com/babel/babel/issues",
|
||||
"dependencies": {
|
||||
"@babel/helper-create-regexp-features-plugin": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-create-regexp-features-plugin": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-class-properties",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of class properties",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-decorators",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of decorators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-do-expressions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of do expressions",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-do-expressions",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-export-default-from",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of export default from",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-default-from",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-export-namespace-from",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of export namespace from",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-flow",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of the flow syntax",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-flow",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-function-bind",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of function bind",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-function-bind",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-function-sent",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of the function.sent meta property",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-function-sent",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-import-meta",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of import.meta",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-import-meta",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-jsx",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of jsx",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-logical-assignment-operators",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of the logical assignment operators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-logical-assignment-operators",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-numeric-separator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of Decimal, Binary, Hex and Octal literals that contain a Numeric Literal Separator",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-numeric-separator",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-partial-application",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of partial application syntax",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-partial-application",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-pipeline-operator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of the pipeline operator",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-pipeline-operator",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-throw-expressions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of Throw Expressions",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-throw-expressions",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-top-level-await",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of top-level await in modules",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await",
|
||||
"license": "MIT",
|
||||
@@ -12,12 +12,12 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-typescript",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Allow parsing of TypeScript syntax",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-typescript",
|
||||
"license": "MIT",
|
||||
@@ -13,12 +13,12 @@
|
||||
"typescript"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-arrow-functions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile ES2015 arrow functions to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions",
|
||||
"license": "MIT",
|
||||
@@ -12,14 +12,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3",
|
||||
"@babel/traverse": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2",
|
||||
"@babel/traverse": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-async-to-generator",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Turn async functions into ES2015 generators",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator",
|
||||
"license": "MIT",
|
||||
@@ -12,15 +12,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-remap-async-to-generator": "^7.8.3"
|
||||
"@babel/helper-module-imports": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/helper-remap-async-to-generator": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-block-scoped-functions",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Babel plugin to ensure function declarations at the block level are block scoped",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions",
|
||||
"license": "MIT",
|
||||
@@ -12,13 +12,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-block-scoping",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile ES2015 block scoping (const and let) to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping",
|
||||
"license": "MIT",
|
||||
@@ -9,17 +9,17 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"lodash": "^4.17.13"
|
||||
},
|
||||
"keywords": [
|
||||
"babel-plugin"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-classes",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile ES2015 classes to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes",
|
||||
"license": "MIT",
|
||||
@@ -9,23 +9,23 @@
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "^7.8.3",
|
||||
"@babel/helper-define-map": "^7.8.3",
|
||||
"@babel/helper-function-name": "^7.8.3",
|
||||
"@babel/helper-optimise-call-expression": "^7.8.3",
|
||||
"@babel/helper-plugin-utils": "^7.8.3",
|
||||
"@babel/helper-replace-supers": "^7.8.3",
|
||||
"@babel/helper-split-export-declaration": "^7.8.3",
|
||||
"@babel/helper-annotate-as-pure": "7.8.3-csx.2",
|
||||
"@babel/helper-define-map": "7.8.3-csx.2",
|
||||
"@babel/helper-function-name": "7.8.3-csx.2",
|
||||
"@babel/helper-optimise-call-expression": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2",
|
||||
"@babel/helper-replace-supers": "7.8.3-csx.2",
|
||||
"@babel/helper-split-export-declaration": "7.8.3-csx.2",
|
||||
"globals": "^11.1.0"
|
||||
},
|
||||
"keywords": [
|
||||
"babel-plugin"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/plugin-transform-computed-properties",
|
||||
"version": "7.8.3",
|
||||
"version": "7.8.3-csx.2",
|
||||
"description": "Compile ES2015 computed properties to ES5",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties",
|
||||
"license": "MIT",
|
||||
@@ -12,13 +12,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "^7.8.3"
|
||||
"@babel/helper-plugin-utils": "7.8.3-csx.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
"@babel/core": "^7.0.0-0 || csx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/helper-plugin-test-runner": "^7.8.3"
|
||||
"@babel/core": "7.8.3-csx.2",
|
||||
"@babel/helper-plugin-test-runner": "7.8.3-csx.2"
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user