Compare commits

...

6 Commits

155 changed files with 367 additions and 300 deletions

View File

@@ -19,6 +19,53 @@ See [`eslint-plugin-babel`'s releases](https://github.com/babel/eslint-plugin-ba
<!-- DO NOT CHANGE THESE COMMENTS - See .github/actions/trigger-github-release/update-changelog.js -->
<!-- insert-new-changelog-here -->
## v7.7.4 (2019-11-23)
#### :bug: Bug Fix
* `babel-runtime-corejs2`, `babel-runtime-corejs3`, `babel-runtime`
* [#10748](https://github.com/babel/babel/pull/10748) Add support for native esm to @babel/runtime. ([@nicolo-ribaudo](https://github.com/nicolo-ribaudo))
* `babel-preset-env`
* [#10742](https://github.com/babel/babel/pull/10742) Update preset-env mappings. ([@existentialism](https://github.com/existentialism))
* `babel-parser`
* [#10737](https://github.com/babel/babel/pull/10737) Flow enums: fix enum body location. ([@gkz](https://github.com/gkz))
* [#10657](https://github.com/babel/babel/pull/10657) Fix some incorrect typeof parsing in flow. ([@existentialism](https://github.com/existentialism))
* [#10582](https://github.com/babel/babel/pull/10582) [parser] Allow optional async methods. ([@gonzarodriguezt](https://github.com/gonzarodriguezt))
* [#10710](https://github.com/babel/babel/pull/10710) register import equals specifier. ([@JLHwung](https://github.com/JLHwung))
* [#10592](https://github.com/babel/babel/pull/10592) Allow TypeScript type assertions in array destructuring. ([@SakibulMowla](https://github.com/SakibulMowla))
* `babel-preset-env-standalone`
* [#10732](https://github.com/babel/babel/pull/10732) fix: add missing available plugins to babel-preset-env-standalone. ([@JLHwung](https://github.com/JLHwung))
* `babel-plugin-transform-function-name`, `babel-plugin-transform-modules-umd`, `babel-preset-env`
* [#10701](https://github.com/babel/babel/pull/10701) Circumvent typeof transform for umd build template. ([@JLHwung](https://github.com/JLHwung))
* `babel-cli`
* [#10698](https://github.com/babel/babel/pull/10698) Babel should not silently remove unknown options after commander arguments. ([@JLHwung](https://github.com/JLHwung))
* `babel-plugin-proposal-optional-chaining`
* [#10694](https://github.com/babel/babel/pull/10694) Fix optional method chaining in derived classes. ([@Shriram-Balaji](https://github.com/Shriram-Balaji))
* `babel-parser`, `babel-types`
* [#10677](https://github.com/babel/babel/pull/10677) Add `asserts this [is type]` parsing support. ([@JLHwung](https://github.com/JLHwung))
* `babel-traverse`
* [#10598](https://github.com/babel/babel/pull/10598) Fix parentheses on replaceWithMultiple for JSX. ([@khoumani](https://github.com/khoumani))
* `babel-helpers`, `babel-plugin-proposal-object-rest-spread`, `babel-preset-env`
* [#10683](https://github.com/babel/babel/pull/10683) Fix: Don't call Object.keys on non-objects (babel#10482). ([@chrishinrichs](https://github.com/chrishinrichs))
#### :nail_care: Polish
* `babel-plugin-proposal-nullish-coalescing-operator`
* [#10720](https://github.com/babel/babel/pull/10720) polish: skip creating extra reference for safely re-used node. ([@JLHwung](https://github.com/JLHwung))
#### :house: Internal
* Other
* [#10731](https://github.com/babel/babel/pull/10731) Removed duplicate key in package.json. ([@rajasekarm](https://github.com/rajasekarm))
* [#10718](https://github.com/babel/babel/pull/10718) chore: use loose mode of transform. ([@JLHwung](https://github.com/JLHwung))
* [#10579](https://github.com/babel/babel/pull/10579) Implement PR workflow for running test262 on babel PRs. ([@jbhoosreddy](https://github.com/jbhoosreddy))
* [#10648](https://github.com/babel/babel/pull/10648) bump @babel/* dev dependencies. ([@JLHwung](https://github.com/JLHwung))
* [#10569](https://github.com/babel/babel/pull/10569) E2E test Babel with itself before publishing. ([@nicolo-ribaudo](https://github.com/nicolo-ribaudo))
* `babel-core`
* [#10668](https://github.com/babel/babel/pull/10668) Reduce standalone build size. ([@JLHwung](https://github.com/JLHwung))
* `babel-plugin-transform-literals`, `babel-preset-env-standalone`
* [#10725](https://github.com/babel/babel/pull/10725) fix typo [ci-skip]. ([@JLHwung](https://github.com/JLHwung))
* `babel-cli`
* [#10692](https://github.com/babel/babel/pull/10692) Add missing flow type to babel-cli for consistency. ([@ZYSzys](https://github.com/ZYSzys))
## v7.7.3 (2019-11-08)
#### :bug: Bug Fix

View File

@@ -199,6 +199,12 @@ new-version:
git pull --rebase
yarn lerna version --force-publish=$(FORCE_PUBLISH)
version-cerxes:
yarn lerna version prerelease --allow-branch initializer-fix-v7.7.4 --preid csx
publish-cerxes: prepublish
yarn lerna publish --registry="https://npm.cerxes.net" --force-publish --allow-branch initializer-fix-v7.7.4 --canary --preid csx --dist-tag csx
# NOTE: Run make new-version first
publish: prepublish
yarn lerna publish from-git

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-codemod-object-assign-to-object-spread",
"version": "7.7.4",
"version": "7.7.4-csx.0",
"description": "Transforms Object.assign into object spread syntax",
"repository": "https://github.com/babel/babel/tree/master/codemods/babel-plugin-codemod-object-assign-to-object-spread",
"license": "MIT",
@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-codemod-optional-catch-binding",
"version": "7.7.4",
"version": "7.7.4-csx.0",
"description": "Remove unused catch bindings",
"repository": "https://github.com/babel/babel/tree/master/codemods/babel-plugin-codemod-remove-unused-catch-binding",
"license": "MIT",
@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "babel-eslint",
"version": "11.0.0-beta.0",
"version": "7.7.4-csx.1",
"description": "Custom parser for ESLint",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
@@ -30,20 +30,20 @@
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-export-default-from": "^7.0.0",
"@babel/plugin-syntax-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-syntax-numeric-separator": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/core": "7.7.4-csx.1",
"@babel/plugin-proposal-class-properties": "7.7.4-csx.1",
"@babel/plugin-proposal-decorators": "7.7.4-csx.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4-csx.1",
"@babel/plugin-proposal-optional-chaining": "7.7.4-csx.1",
"@babel/plugin-proposal-pipeline-operator": "7.7.4-csx.1",
"@babel/plugin-syntax-dynamic-import": "7.7.4-csx.1",
"@babel/plugin-syntax-export-default-from": "7.7.4-csx.1",
"@babel/plugin-syntax-export-namespace-from": "7.7.4-csx.1",
"@babel/plugin-syntax-import-meta": "7.7.4-csx.1",
"@babel/plugin-syntax-numeric-separator": "7.7.4-csx.1",
"@babel/preset-env": "7.7.4-csx.1",
"@babel/preset-flow": "7.7.4-csx.1",
"@babel/preset-react": "7.7.4-csx.1",
"dedent": "^0.7.0",
"eslint": "^6.0.1",
"espree": "^6.0.0"

View File

@@ -8,7 +8,7 @@ const CURRENT_BABEL_VERSION = babelCore.version;
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,
);

View File

@@ -1,5 +1,5 @@
{
"version": "7.7.4",
"version": "7.7.4-csx.1",
"changelog": {
"repo": "babel/babel",
"cacheDir": ".changelog",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/cli",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
@@ -32,7 +32,7 @@
"chokidar": "^2.1.8"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Babel compiler core.",
"main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
@@ -40,12 +40,12 @@
},
"dependencies": {
"@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.7.4",
"@babel/helpers": "^7.7.4",
"@babel/parser": "^7.7.4",
"@babel/template": "^7.7.4",
"@babel/traverse": "^7.7.4",
"@babel/types": "^7.7.4",
"@babel/generator": "7.7.4-csx.1",
"@babel/helpers": "7.7.4-csx.1",
"@babel/parser": "7.7.4-csx.1",
"@babel/template": "7.7.4-csx.1",
"@babel/traverse": "7.7.4-csx.1",
"@babel/types": "7.7.4-csx.1",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"json5": "^2.1.0",

View File

@@ -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;

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-annotate-as-pure",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-bindify-decorators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to bindify decorators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-bindify-decorators",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-builder-binary-assignment-operator-visitor",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-builder-react-jsx",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to build react jsx",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-call-delegate",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to call delegate",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-class-features-plugin",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
"description": "Compile class public and private fields, private methods and decorators to ES6",
@@ -19,10 +19,11 @@
"@babel/helper-optimise-call-expression": "^7.7.4",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-replace-supers": "^7.7.4",
"@babel/helper-split-export-declaration": "^7.7.4"
"@babel/helper-split-export-declaration": "^7.7.4",
"semver": "^5.5.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
"@babel/core": "^7.0.0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -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({

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-regexp-features-plugin",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
"description": "Compile ESNext Regular Expressions to ES5",
@@ -19,10 +19,11 @@
],
"dependencies": {
"@babel/helper-regex": "^7.4.4",
"regexpu-core": "^4.6.0"
"regexpu-core": "^4.6.0",
"semver": "^5.5.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
"@babel/core": "^7.0.0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -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 = {} }) {

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-define-map",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to define a map",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-explode-assignable-expression",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to explode an assignable expression",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-explode-class",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to explode class",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-class",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-function-name",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-get-function-arity",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to get function arity",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-hoist-variables",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to hoist variables",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-member-expression-to-functions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-module-imports",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Babel helper functions for inserting module loads",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-module-transforms",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-optimise-call-expression",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to optimise call expression",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-plugin-test-runner",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to support test runner",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-test-runner",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-remap-async-to-generator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-replace-supers",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper function to replace supers",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-simple-access",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-split-export-declaration",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-transform-fixture-test-runner",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Transform test runner for @babel/helper-fixtures module",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helper-wrap-function",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Helper to wrap functions inside a function call.",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function",
"license": "MIT",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/helpers",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Collection of helper functions used by Babel transforms.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1053,16 +1053,20 @@ helpers.initializerWarningHelper = helper("7.0.0-beta.0")`
* Add a helper to call as a replacement for class property definition.
*/
helpers.initializerDefineProperty = helper("7.0.0-beta.0")`
export default 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,
});
}
export default function _initializerDefineProperty(target, property, descriptor, context) {
if (!descriptor) return;
if(descriptor.initializer){
if(descriptor.set){
descriptor.set.call(context, descriptor.initializer.call(context));
}else{
descriptor.value = descriptor.initializer.call(context);
}
delete descriptor.initializer;
}
Object.defineProperty(target, property, descriptor);
}
`;
/**

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/node",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Babel command line",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
@@ -28,7 +28,7 @@
"v8flags": "^3.1.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/parser",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-external-helpers",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "This plugin contains helper functions thatll be placed at the top of the generated code",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-external-helpers",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-async-generator-functions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -17,7 +17,7 @@
"@babel/plugin-syntax-async-generators": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-class-properties",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -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.initializer) { if (descriptor.set) { descriptor.set.call(context, descriptor.initializer.call(context)); } else { descriptor.value = descriptor.initializer.call(context); } delete descriptor.initializer; } Object.defineProperty(target, property, descriptor); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

View File

@@ -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.initializer) { if (descriptor.set) { descriptor.set.call(context, descriptor.initializer.call(context)); } else { descriptor.value = descriptor.initializer.call(context); } delete descriptor.initializer; } Object.defineProperty(target, property, descriptor); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

View File

@@ -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.initializer) { if (descriptor.set) { descriptor.set.call(context, descriptor.initializer.call(context)); } else { descriptor.value = descriptor.initializer.call(context); } delete descriptor.initializer; } Object.defineProperty(target, property, descriptor); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

View File

@@ -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.initializer) { if (descriptor.set) { descriptor.set.call(context, descriptor.initializer.call(context)); } else { descriptor.value = descriptor.initializer.call(context); } delete descriptor.initializer; } Object.defineProperty(target, property, descriptor); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-decorators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"license": "MIT",
"publishConfig": {
@@ -20,7 +20,7 @@
"@babel/plugin-syntax-decorators": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-do-expressions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile do expressions to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-do-expressions",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-do-expressions": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-dynamic-import",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Transform import() expressions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-dynamic-import": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-export-default-from",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile export default to ES2015",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-default-from",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-export-default-from": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-export-namespace-from",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile export namespace to ES2015",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-namespace-from",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-export-namespace-from": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-function-bind",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile function bind operator to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-function-bind",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-function-bind": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-function-sent",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -17,7 +17,7 @@
"@babel/plugin-syntax-function-sent": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-json-strings",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-json-strings": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-logical-assignment-operators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-logical-assignment-operators": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-nullish-coalescing-operator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Remove nullish coalescing operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-numeric-separator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-numeric-separator": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-object-rest-spread",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-optional-catch-binding",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile optional catch bindings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding",
"license": "MIT",
@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-optional-chaining",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-optional-chaining": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-partial-application",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-partial-application": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-pipeline-operator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Transform pipeline operator into call expressions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-pipeline-operator",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-pipeline-operator": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-private-methods",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "This plugin transforms private class methods",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-private-methods",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-throw-expressions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Wraps Throw Expressions in an IIFE",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-throw-expressions",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/plugin-syntax-throw-expressions": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-unicode-property-regex",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile Unicode property escapes in Unicode regular expressions to ES5.",
"homepage": "https://babeljs.io/",
"license": "MIT",
@@ -26,7 +26,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-async-generators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of async generator functions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-bigint",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of BigInt literals",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-class-properties",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of class properties",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-decorators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of decorators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-do-expressions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of do expressions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-do-expressions",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-dynamic-import",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of import()",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-export-default-from",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of export default from",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-default-from",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-export-namespace-from",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of export namespace from",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-flow",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of the flow syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-flow",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-function-bind",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of function bind",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-function-bind",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-function-sent",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-import-meta",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of import.meta",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-import-meta",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-json-strings",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-jsx",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of jsx",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-logical-assignment-operators",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-nullish-coalescing-operator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of the nullish-coalescing operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-numeric-separator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-object-rest-spread",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of object rest/spread",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-optional-catch-binding",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of optional catch bindings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-optional-chaining",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of optional properties",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-partial-application",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of partial application syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-partial-application",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-pipeline-operator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of the pipeline operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-pipeline-operator",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-throw-expressions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of Throw Expressions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-throw-expressions",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-top-level-await",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-typescript",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Allow parsing of TypeScript syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-typescript",
"license": "MIT",
@@ -16,7 +16,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4"

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-arrow-functions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile ES2015 arrow functions to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-async-to-generator",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Turn async functions into ES2015 generators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator",
"license": "MIT",
@@ -17,7 +17,7 @@
"@babel/helper-remap-async-to-generator": "^7.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-block-scoped-functions",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-block-scoping",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"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",
@@ -16,7 +16,7 @@
"babel-plugin"
],
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-classes",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile ES2015 classes to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes",
"license": "MIT",
@@ -22,7 +22,7 @@
"babel-plugin"
],
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-computed-properties",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile ES2015 computed properties to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-destructuring",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile ES2015 destructuring to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring",
"license": "MIT",
@@ -15,7 +15,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-dotall-regex",
"version": "7.7.4",
"version": "7.7.4-csx.1",
"description": "Compile regular expressions using the `s` (`dotAll`) flag to ES5.",
"homepage": "https://babeljs.io/",
"license": "MIT",
@@ -22,7 +22,7 @@
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^7.0.0-0 || csx"
},
"devDependencies": {
"@babel/core": "^7.7.4",

Some files were not shown because too many files have changed in this diff Show More