-
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.
Merge branch 'master' into bugfix/cookieAuthentication
- Loading branch information
Showing
57 changed files
with
4,415 additions
and
30,914 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 |
---|---|---|
@@ -1,10 +1,29 @@ | ||
[production] | ||
[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 | ||
|
||
[development] | ||
[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 |
---|---|---|
@@ -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,179 +1,140 @@ | ||
module.exports = { | ||
"env": { | ||
"esm": { | ||
"presets": [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"debug": true, | ||
"modules": false, | ||
"ignoreBrowserslistConfig": false, | ||
"useBuiltIns": false, | ||
"include": [ | ||
"@babel/plugin-proposal-logical-assignment-operators" | ||
] | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"corejs": 3, | ||
"absoluteRuntime": false, | ||
"version": "^7.11.2" | ||
} | ||
], | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"core": "./src/core", | ||
} | ||
} | ||
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" | ||
] | ||
] | ||
}, | ||
"test": { | ||
"presets": [ | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
], | ||
} | ||
|
||
module.exports = { | ||
env: { | ||
commonjs: { | ||
presets: [ | ||
[ | ||
"@babel/env", | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "16.13.2" | ||
}, | ||
"ignoreBrowserslistConfig": true, | ||
"useBuiltIns": false, | ||
debug: false, | ||
modules: "commonjs", | ||
loose: true, | ||
useBuiltIns: false, | ||
forceAllTransforms: false, | ||
ignoreBrowserslistConfig: false, | ||
} | ||
], | ||
"@babel/preset-react" | ||
"@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", | ||
} | ||
], | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
additionalLibraries: [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"core": "./src/core", | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
] | ||
}, | ||
"development": { | ||
"presets": [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"ignoreBrowserslistConfig": false, | ||
"useBuiltIns": false, | ||
"include": [ | ||
"@babel/plugin-proposal-logical-assignment-operators" | ||
] | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"corejs": 3, | ||
"absoluteRuntime": false, | ||
"version": "^7.11.2" | ||
} | ||
], | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"core": "./src/core", | ||
} | ||
} | ||
] | ||
] | ||
}, | ||
"production": { | ||
"presets": [ | ||
esm: { | ||
presets: [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"ignoreBrowserslistConfig": false, | ||
"useBuiltIns": false, | ||
"include": [ | ||
"@babel/plugin-proposal-logical-assignment-operators" | ||
] | ||
debug: false, | ||
modules: false, | ||
ignoreBrowserslistConfig: false, | ||
useBuiltIns: false, | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"@babel/plugin-transform-class-properties", | ||
"@babel/plugin-transform-nullish-coalescing-operator", | ||
"@babel/plugin-transform-object-rest-spread", | ||
"@babel/plugin-transform-optional-chaining", | ||
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", | ||
} | ||
], | ||
[ | ||
"transform-react-remove-prop-types", | ||
{ | ||
"additionalLibraries": [ | ||
additionalLibraries: [ | ||
"react-immutable-proptypes" | ||
] | ||
} | ||
], | ||
[ | ||
"babel-plugin-module-resolver", | ||
{ | ||
"alias": { | ||
"root": ".", | ||
"core": "./src/core", | ||
alias: { | ||
root: ".", | ||
core: "./src/core", | ||
} | ||
} | ||
] | ||
] | ||
}, | ||
} | ||
development: browser, | ||
production: browser, | ||
}, | ||
} | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.