Skip to content

Commit

Permalink
chore: update lint deps (#14803)
Browse files Browse the repository at this point in the history
* update lint deps

* fix types

* update
  • Loading branch information
liuxingbaoyu committed Jul 27, 2022
1 parent b0114cc commit 029fa17
Show file tree
Hide file tree
Showing 8 changed files with 479 additions and 639 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Expand Up @@ -30,3 +30,5 @@ eslint/*/test/fixtures

test/runtime-integration/*/output.js
test/runtime-integration/*/output-absolute.js

Makefile.js
2 changes: 2 additions & 0 deletions .prettierignore
Expand Up @@ -9,3 +9,5 @@ packages/*/test/fixtures/**/output.*

CHANGELOG.md
.github/*.md

Makefile.js
4 changes: 2 additions & 2 deletions Makefile.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -45,15 +45,15 @@
"chalk": "^5.0.0",
"charcodes": "^0.2.0",
"core-js": "^3.23.4",
"eslint": "^8.9.0",
"eslint": "^8.20.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"fancy-log": "^2.0.0",
"glob": "^7.1.7",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-filter": "^7.0.0",
"gulp-plumber": "^1.2.1",
Expand All @@ -62,9 +62,9 @@
"jest": "^28.0.3",
"jest-light-runner": "^0.2.1",
"jest-worker": "^27.4.0",
"lint-staged": "^9.2.0",
"lint-staged": "^13.0.3",
"mergeiterator": "^1.4.4",
"prettier": "2.7.1",
"prettier": "^2.7.1",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-polyfill-node": "^0.9.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/babel-cli/package.json
Expand Up @@ -28,7 +28,7 @@
"commander": "^4.0.1",
"convert-source-map": "^1.1.0",
"fs-readdir-recursive": "^1.1.0",
"glob": "^7.0.0",
"glob": "^7.2.0",
"make-dir": "condition:BABEL_8_BREAKING ? : ^2.1.0",
"slash": "condition:BABEL_8_BREAKING ? ^3.0.0 : ^2.0.0"
},
Expand All @@ -43,6 +43,7 @@
"@babel/core": "workspace:^",
"@babel/helper-fixtures": "workspace:^",
"@types/fs-readdir-recursive": "^1.1.0",
"@types/glob": "^7.2.0",
"rimraf": "^3.0.0"
},
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-types/package.json
Expand Up @@ -32,7 +32,7 @@
"@babel/generator": "workspace:^",
"@babel/parser": "workspace:^",
"chalk": "^4.1.0",
"glob": "^7.1.7"
"glob": "^7.2.0"
},
"engines": {
"node": ">=6.9.0"
Expand Down
4 changes: 2 additions & 2 deletions scripts/pack-script.js
Expand Up @@ -49,7 +49,7 @@ async function pack(inputPath, outputPath, dynamicRequireTargets) {
});

const output = `/* eslint-disable */
//prettier-ignore
${result.output[0].code}`;
// prettier-ignore
${result.output[0].code}`;
writeFileSync(outputPath, output);
}

0 comments on commit 029fa17

Please sign in to comment.