[babel 8] Add "exports" to every package (#14013)
This commit is contained in:
parent
2c68d03bf2
commit
d1cabf6bc8
8
.yarn/plugins/@yarnpkg/plugin-conditions.cjs
vendored
8
.yarn/plugins/@yarnpkg/plugin-conditions.cjs
vendored
File diff suppressed because one or more lines are too long
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -74,3 +74,15 @@ gen_enforced_field(WorkspaceCwd, FieldName, ExpectedValue) :-
|
|||||||
gen_enforced_dependency(WorkspaceCwd, DependencyIdent, null, 'devDependencies') :-
|
gen_enforced_dependency(WorkspaceCwd, DependencyIdent, null, 'devDependencies') :-
|
||||||
workspace_has_dependency(WorkspaceCwd, DependencyIdent, _, 'devDependencies'),
|
workspace_has_dependency(WorkspaceCwd, DependencyIdent, _, 'devDependencies'),
|
||||||
workspace_has_dependency(WorkspaceCwd, DependencyIdent, _, 'dependencies').
|
workspace_has_dependency(WorkspaceCwd, DependencyIdent, _, 'dependencies').
|
||||||
|
|
||||||
|
% Enforces `exports` to be consistent
|
||||||
|
gen_enforced_field(WorkspaceCwd, 'exports', '{ ".": "./lib/index.js", "./package.json": "./package.json" }') :-
|
||||||
|
\+ workspace_field(WorkspaceCwd, 'private', true),
|
||||||
|
% Exclude packages with more complex `exports`
|
||||||
|
workspace_ident(WorkspaceCwd, WorkspaceIdent),
|
||||||
|
WorkspaceIdent \= '@babel/eslint-parser',
|
||||||
|
WorkspaceIdent \= '@babel/compat-data',
|
||||||
|
WorkspaceIdent \= '@babel/plugin-transform-react-jsx', % TODO: Remove in Babel 8
|
||||||
|
WorkspaceIdent \= '@babel/helper-plugin-test-runner', % TODO: Remove in Babel 8
|
||||||
|
WorkspaceIdent \= '@babel/standalone',
|
||||||
|
\+ atom_concat('@babel/runtime', _, WorkspaceIdent).
|
||||||
|
|||||||
@ -50,5 +50,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,5 +25,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -72,5 +72,17 @@
|
|||||||
"@types/resolve": "^1.3.2",
|
"@types/resolve": "^1.3.2",
|
||||||
"@types/semver": "^5.4.0",
|
"@types/semver": "^5.4.0",
|
||||||
"@types/source-map": "^0.5.0"
|
"@types/source-map": "^0.5.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,5 +32,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,5 +19,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -20,5 +20,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,5 +23,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,7 +11,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
|
|||||||
@ -37,5 +37,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -20,5 +20,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -14,7 +14,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/types": "workspace:^"
|
"@babel/types": "workspace:^"
|
||||||
|
|||||||
@ -22,5 +22,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,5 +22,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,5 +21,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,5 +19,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,5 +23,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,5 +22,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,5 +23,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -26,5 +26,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,5 +23,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -33,5 +33,21 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
{
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"import": "./esm.mjs",
|
||||||
|
"default": "./lib/index.js"
|
||||||
|
},
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,5 +16,17 @@
|
|||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -24,5 +24,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,5 +23,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,5 +22,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,5 +19,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -12,7 +12,10 @@
|
|||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": "./lib/index.js",
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@unicode/unicode-14.0.0": "^1.2.1",
|
"@unicode/unicode-14.0.0": "^1.2.1",
|
||||||
"charcodes": "^0.2.0"
|
"charcodes": "^0.2.0"
|
||||||
|
|||||||
@ -12,7 +12,10 @@
|
|||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": "./lib/index.js",
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -22,5 +22,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,5 +25,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,5 +25,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -46,5 +46,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -38,5 +38,17 @@
|
|||||||
"@babel/helper-validator-identifier": "workspace:^",
|
"@babel/helper-validator-identifier": "workspace:^",
|
||||||
"charcodes": "^0.2.0"
|
"charcodes": "^0.2.0"
|
||||||
},
|
},
|
||||||
"bin": "./bin/babel-parser.js"
|
"bin": "./bin/babel-parser.js",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -14,9 +14,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": [
|
".": "./lib/index.js",
|
||||||
"./lib/index.js"
|
"./package.json": "./package.json"
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin",
|
"babel-plugin",
|
||||||
|
|||||||
@ -14,9 +14,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": [
|
".": "./lib/index.js",
|
||||||
"./lib/index.js"
|
"./package.json": "./package.json"
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin",
|
"babel-plugin",
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
|
|||||||
@ -33,5 +33,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
|
|||||||
@ -36,5 +36,17 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
|
},
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,5 +31,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,5 +32,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,5 +32,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -34,5 +34,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -33,5 +33,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,5 +32,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -12,7 +12,10 @@
|
|||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": "./lib/index.js",
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
],
|
],
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -36,5 +36,17 @@
|
|||||||
"@babel/core": "workspace:^",
|
"@babel/core": "workspace:^",
|
||||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
|
|||||||
@ -13,7 +13,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,5 +27,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,8 @@
|
|||||||
},
|
},
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./lib/index.js"
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"babel-plugin"
|
"babel-plugin"
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,5 +27,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,5 +28,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,5 +31,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,5 +31,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -37,5 +37,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -35,5 +35,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,5 +31,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,5 +30,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -31,5 +31,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,5 +29,17 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
},
|
},
|
||||||
"author": "The Babel Team (https://babel.dev/team)"
|
"author": "The Babel Team (https://babel.dev/team)",
|
||||||
|
"conditions": {
|
||||||
|
"BABEL_8_BREAKING": [
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"exports": null
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./lib/index.js",
|
||||||
|
"./package.json": "./package.json"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user