Skip to content

Commit

Permalink
chore: 更新依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
haiweilian committed Sep 14, 2024
1 parent 03b256e commit 6337b78
Show file tree
Hide file tree
Showing 24 changed files with 835 additions and 741 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
"@bfehub/eslint-config-typescript": "workspace:*",
"@bfehub/eslint-config-vue": "workspace:*",
"@bfehub/stylelint-config-basic": "workspace:*",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"commitizen": "^4.3.0",
"eslint": "^9.7.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"stylelint": "^16.7.0",
"typescript": "^5.5.3"
"stylelint": "^16.9.0",
"typescript": "^5.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/create-lint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"access": "public"
},
"dependencies": {
"@antfu/install-pkg": "^0.3.3",
"@antfu/install-pkg": "^0.4.1",
"fs-extra": "^11.2.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import basic from '@bfehub/eslint-config-basic'

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default basic
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import react from '@bfehub/eslint-config-react'

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default react
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import typescript from '@bfehub/eslint-config-typescript'

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default typescript
2 changes: 1 addition & 1 deletion packages/create-lint/template/eslint-vue/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import vue from '@bfehub/eslint-config-vue'

/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ npm install -D eslint prettier @bfehub/eslint-config-basic
```js
import basic from '@bfehub/eslint-config-basic'
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default basic
```
2 changes: 1 addition & 1 deletion packages/eslint-config-basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import pluginPromise from 'eslint-plugin-promise'
import globals from 'globals'

// https://eslint.org/docs/user-guide/getting-started
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [
// https://eslint.org/docs/latest/use/configure/language-options
{
Expand Down
14 changes: 7 additions & 7 deletions packages/eslint-config-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"prettier": ">=3.0.0"
},
"dependencies": {
"@eslint/js": "^9.7.0",
"@eslint/js": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^3.0.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"globals": "^15.8.0"
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.9.0"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ npm install -D eslint prettier typescript @bfehub/eslint-config-react
```js
import react from '@bfehub/eslint-config-react'
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default react
```
2 changes: 1 addition & 1 deletion packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import pluginReactRecommended from 'eslint-plugin-react/configs/recommended.js'
import pluginReactHooks from 'eslint-plugin-react-hooks'

// https://github.com/facebook/react
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [
// @bfehub/eslint-config-typescript
...typescript,
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"dependencies": {
"@bfehub/eslint-config-typescript": "workspace:*",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "5.1.0-rc-01172397-20240716"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ npm install -D eslint prettier typescript @bfehub/eslint-config-typescript
```js
import typescript from '@bfehub/eslint-config-typescript'
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default typescript
```
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import configPrettier from 'eslint-config-prettier'
import tseslint from 'typescript-eslint'

// https://typescript-eslint.io/docs/linting
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [
// @bfehub/eslint-config-basic
...basic,
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"typescript-eslint": "8.0.0-alpha.44"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
"typescript": "^5.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ npm install -D eslint prettier typescript @bfehub/eslint-config-vue
```js
import vue from '@bfehub/eslint-config-vue'
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default vue
```
2 changes: 1 addition & 1 deletion packages/eslint-config-vue/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import configPrettier from 'eslint-config-prettier'
import pluginVue from 'eslint-plugin-vue'

// https://eslint.vuejs.org/user-guide
/** @type {import('eslint').Linter.FlatConfig[]} */
/** @type {import('eslint').Linter.Config[]} */
export default [
// @bfehub/eslint-config-typescript
...typescript,
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"@bfehub/eslint-config-typescript": "workspace:*",
"@typescript-eslint/parser": "8.0.0-alpha.44",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.27.0"
"eslint-plugin-vue": "^9.28.0"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3"
}
}
10 changes: 5 additions & 5 deletions packages/stylelint-config-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-recess-order": "^5.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0"
"stylelint-prettier": "^5.0.2"
},
"devDependencies": {
"postcss": "^8.4.39",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"stylelint": "^16.7.0"
"stylelint": "^16.9.0"
}
}
Loading

0 comments on commit 6337b78

Please sign in to comment.