-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 387419e
Showing
110 changed files
with
106,419 additions
and
0 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,92 @@ | ||
## | ||
# Browserslist config file. | ||
# | ||
# Many packages are aware of this config file's location. | ||
# | ||
# @note CUSTOM EDITS ONLY PLEASE! | ||
# @note In the future this file will be updated automatically. | ||
# @note Only `<custom:start.../custom:end>` will be preserved below. | ||
# | ||
# Generated using <https://www.npmjs.com/package/browserslist-generator>. | ||
# | ||
# import BLG from 'browserslist-generator'; | ||
# console.log( BLG.browsersWithSupportForEcmaVersion( 'es2021' ).join( '\n' ) ); | ||
# | ||
# - Review BLG source: <https://o5p.me/4DC1Vq>. | ||
# - Review browserlist report on production config: <https://o5p.me/Fvs3WP>. | ||
# - Review our transpiler: <https://esbuild.github.io/content-types/#javascript>. | ||
## | ||
|
||
[production] | ||
last 1 chrome versions | ||
node >= 19.2.0 | ||
and_chr >= 85 | ||
chrome >= 85 | ||
and_ff >= 79 | ||
android >= 108 | ||
edge >= 85 | ||
samsung >= 14.0 | ||
safari >= 14 | ||
ios_saf >= 14.4 | ||
opera >= 71 | ||
firefox >= 79 | ||
not dead | ||
|
||
[any] | ||
last 1 chrome versions | ||
node >= 19.2.0 | ||
and_chr >= 85 | ||
chrome >= 85 | ||
and_ff >= 79 | ||
android >= 108 | ||
edge >= 85 | ||
samsung >= 14.0 | ||
safari >= 14 | ||
ios_saf >= 14.4 | ||
opera >= 71 | ||
firefox >= 79 | ||
not dead | ||
|
||
[cfp] | ||
last 1 chrome versions | ||
not dead | ||
|
||
[cfw] | ||
last 1 chrome versions | ||
not dead | ||
|
||
[node] | ||
node >= 19.2.0 | ||
not dead | ||
|
||
[web] | ||
and_chr >= 85 | ||
chrome >= 85 | ||
and_ff >= 79 | ||
android >= 108 | ||
edge >= 85 | ||
samsung >= 14.0 | ||
safari >= 14 | ||
ios_saf >= 14.4 | ||
opera >= 71 | ||
firefox >= 79 | ||
not dead | ||
|
||
[webw] | ||
and_chr >= 85 | ||
chrome >= 85 | ||
and_ff >= 79 | ||
android >= 108 | ||
edge >= 85 | ||
samsung >= 14.0 | ||
safari >= 14 | ||
ios_saf >= 14.4 | ||
opera >= 71 | ||
firefox >= 79 | ||
not dead | ||
|
||
## | ||
# Customizations. | ||
# <custom:start> | ||
|
||
# </custom:end> |
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,28 @@ | ||
## | ||
# Editor config file. | ||
# | ||
# Many packages are aware of this config file's location. | ||
# | ||
# @note CUSTOM EDITS ONLY PLEASE! | ||
# @note In the future this file will be updated automatically. | ||
# @note Only `<custom:start.../custom:end>` will be preserved below. | ||
# | ||
# @see https://editorconfig.org/ | ||
## | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = tab | ||
insert_final_newline = true | ||
max_line_length = 180 | ||
trim_trailing_whitespace = true | ||
|
||
## | ||
# Customizations. | ||
# <custom:start> | ||
|
||
# </custom:end> |
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,15 @@ | ||
## | ||
# ESLint ignore file. | ||
# | ||
# ESLint is aware of this config file's location. | ||
# | ||
# @note CUSTOM EDITS ONLY PLEASE! | ||
# @note In the future this file will be updated automatically. | ||
# @note Only `<custom:start.../custom:end>` will be preserved below. | ||
## | ||
|
||
## | ||
# Customizations. | ||
# <custom:start> | ||
|
||
# </custom:end> |
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,21 @@ | ||
/** | ||
* ESLint config file. | ||
* | ||
* ESLint is aware of this config file's location. | ||
* | ||
* @note CUSTOM EDITS ONLY PLEASE! | ||
* @note In the future this file will be updated automatically. | ||
* @note Only `<custom:start.../custom:end>` will be preserved below. | ||
*/ | ||
/* eslint-env es2021, node */ | ||
|
||
const baseConfig = require('./dev/.files/eslint/config.cjs'); | ||
const { $obj } = require('./node_modules/@clevercanyon/utilities/dist/index.cjs'); | ||
|
||
/* | ||
* Customizations. | ||
* <custom:start> */ | ||
|
||
module.exports = $obj.mergeDeep({}, baseConfig, {}); | ||
|
||
/* </custom:end> */ |
Oops, something went wrong.