Bump packages to fix linter
This commit is contained in:
parent
ed9506bbaf
commit
0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions
1
node_modules/@github/browserslist-config/CODEOWNERS
generated
vendored
Normal file
1
node_modules/@github/browserslist-config/CODEOWNERS
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
* @github/web-systems
|
||||
21
node_modules/@github/browserslist-config/LICENSE
generated
vendored
Normal file
21
node_modules/@github/browserslist-config/LICENSE
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022 GitHub
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
42
node_modules/@github/browserslist-config/README.md
generated
vendored
Normal file
42
node_modules/@github/browserslist-config/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# browserslist-config
|
||||
|
||||
The GitHub browserslist config.
|
||||
|
||||
## How is this used on GitHub?
|
||||
|
||||
We use `browserslist` to power tools that guide developers to use APIs and syntax that is implemented by the [browsers we support](https://github.com/github/browser-support). These tools include [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat), [eslint-plugin-escompat](https://github.com/keithamus/eslint-plugin-escompat) and [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env).
|
||||
|
||||
## Usage
|
||||
|
||||
Install the package using `npm`.
|
||||
|
||||
```sh
|
||||
npm install --save-dev @github/browserslist-config
|
||||
```
|
||||
|
||||
Add the `browserslist` key to your `package.json`.
|
||||
|
||||
```diff
|
||||
diff --git a/package.json b/package.json
|
||||
index 2ecef3d..260838f 100644
|
||||
--- a/package.json
|
||||
+++ b/package.json
|
||||
@@ -5,6 +5,7 @@
|
||||
"keywords": [
|
||||
"prettier"
|
||||
],
|
||||
+ "browserslist": "extends @github/browserslist-config",
|
||||
"license": "MIT",
|
||||
"author": "GitHub Inc.",
|
||||
"main": "index.js"
|
||||
```
|
||||
|
||||
[Check out the `browserslist` documentation for more info on sharing configurations](https://github.com/browserslist/browserslist#shareable-configs).
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributing should only be done by GitHub staff and PRs are approved by `@github/web-systems` as the CODEOWNERS of this library. GitHub Staff can use [github/browser-support-cli](https://github.com/github/browser-support-cli) to get production data on browser usage for github.com.
|
||||
|
||||
## License
|
||||
|
||||
Distributed under the MIT license. See LICENSE for details.
|
||||
9
node_modules/@github/browserslist-config/index.js
generated
vendored
Normal file
9
node_modules/@github/browserslist-config/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
// Supported Browsers: https://docs.github.com/articles/supported-browsers/
|
||||
|
||||
module.exports = [
|
||||
'last 10 Chrome versions',
|
||||
'last 10 Edge versions',
|
||||
'last 10 Firefox versions',
|
||||
'last 3 Safari major versions',
|
||||
'Firefox ESR'
|
||||
]
|
||||
20
node_modules/@github/browserslist-config/package.json
generated
vendored
Normal file
20
node_modules/@github/browserslist-config/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "@github/browserslist-config",
|
||||
"version": "1.0.0",
|
||||
"description": "The GitHub browserslist config.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/github/browserslist-config.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "GitHub Inc.",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/github/browserslist-config/issues"
|
||||
},
|
||||
"homepage": "https://github.com/github/browserslist-config#readme"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue