-
Notifications
You must be signed in to change notification settings - Fork 9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
254 changed files
with
6,590 additions
and
5,215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[node-production] | ||
maintained node versions | ||
|
||
[node-development] | ||
node 20.3.0 | ||
|
||
[browser-production] | ||
> 1% | ||
last 2 versions | ||
Firefox ESR | ||
not dead | ||
|
||
[browser-development] | ||
last 1 chrome version | ||
last 1 firefox version | ||
last 1 safari version | ||
|
||
[isomorphic-production] | ||
> 1% | ||
last 2 versions | ||
Firefox ESR | ||
not dead | ||
maintained node versions | ||
|
||
[isomorphic-development] | ||
last 1 chrome version | ||
last 1 firefox version | ||
last 1 safari version | ||
node 20.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ flavors/**/dist/* | |
/lib | ||
/es | ||
dist/log* | ||
/swagger-ui-*.tgz | ||
|
||
# Cypress | ||
test/e2e-cypress/screenshots | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16.13.2 | ||
20.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,167 +1,140 @@ | ||
const browser = { | ||
presets: [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
debug: false, | ||
modules: "auto", | ||
useBuiltIns: false, | ||
forceAllTransforms: false, | ||
ignoreBrowserslistConfig: false, | ||
} | ||
], | ||
"@babel/preset-react", | ||
], | ||
plugins: [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
corejs: { version: 3, proposals: false }, | ||
absoluteRuntime: false, | ||
helpers: true, | ||
regenerator: false, | ||
version: "^7.22.11", | ||
} | ||
], | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
additionalLibraries: [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
], | ||
} | ||
|
||
module.exports = { | ||
"env": { | ||
"commonjs": { | ||
"presets": [ | ||
env: { | ||
commonjs: { | ||
presets: [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"debug": false, | ||
"modules": "commonjs", | ||
"targets": { | ||
"node": "8" | ||
}, | ||
"forceAllTransforms": false, | ||
"ignoreBrowserslistConfig": true | ||
debug: false, | ||
modules: "commonjs", | ||
loose: true, | ||
useBuiltIns: false, | ||
forceAllTransforms: false, | ||
ignoreBrowserslistConfig: false, | ||
} | ||
], | ||
"@babel/preset-react", | ||
], | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-transform-modules-commonjs", | ||
{ | ||
"loose": true | ||
} | ||
], | ||
"@babel/proposal-class-properties", | ||
"@babel/proposal-object-rest-spread", | ||
"@babel/plugin-proposal-optional-chaining", | ||
] | ||
}, | ||
"es": { | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"debug": false, | ||
"modules": false | ||
} | ||
], | ||
"@babel/preset-react", | ||
], | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"absoluteRuntime": false, | ||
"corejs": 3, | ||
"version": "^7.11.2" | ||
} | ||
], | ||
"@babel/proposal-class-properties", | ||
"@babel/proposal-object-rest-spread", | ||
"@babel/plugin-proposal-optional-chaining", | ||
] | ||
}, | ||
"development": { | ||
"presets": [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"targets": { | ||
"browsers": [ | ||
/* benefit of C/S/FF/Edge only? */ | ||
"> 1%", | ||
"last 2 versions", | ||
"Firefox ESR", | ||
"not dead" | ||
] | ||
}, | ||
"useBuiltIns": false, | ||
"corejs": { version: 3 }, | ||
"include": [ | ||
"@babel/plugin-proposal-logical-assignment-operators" | ||
] | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
plugins: [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"corejs": 3, | ||
"absoluteRuntime": false, | ||
"version": "^7.11.2" | ||
corejs: { version: 3, proposals: false }, | ||
absoluteRuntime: false, | ||
helpers: true, | ||
regenerator: false, | ||
version: "^7.22.11", | ||
} | ||
], | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-optional-chaining", | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
additionalLibraries: [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"components": "./src/core/components", | ||
"containers": "./src/core/containers", | ||
"core": "./src/core", | ||
"plugins": "./src/plugins", | ||
"img": "./src/img", | ||
"corePlugins": "./src/core/plugins", | ||
"less": "./src/less" | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
] | ||
], | ||
}, | ||
"test": { | ||
"presets": [ | ||
esm: { | ||
presets: [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"targets": { | ||
"node": "10" | ||
}, | ||
"useBuiltIns": false, | ||
"corejs": { version: 3 } | ||
debug: false, | ||
modules: false, | ||
ignoreBrowserslistConfig: false, | ||
useBuiltIns: false, | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
plugins: [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"corejs": 3, | ||
"absoluteRuntime": false, | ||
"version": "^7.11.2" | ||
corejs: { version: 3, proposals: false }, | ||
absoluteRuntime: false, | ||
helpers: true, | ||
regenerator: false, | ||
version: "^7.22.11", | ||
} | ||
], | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-optional-chaining", | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
additionalLibraries: [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"components": "./src/core/components", | ||
"containers": "./src/core/containers", | ||
"core": "./src/core", | ||
"plugins": "./src/plugins", | ||
"img": "./src/img", | ||
"corePlugins": "./src/core/plugins", | ||
"less": "./src/less" | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
] | ||
} | ||
} | ||
}, | ||
development: browser, | ||
production: browser, | ||
}, | ||
} | ||
|
Oops, something went wrong.