Skip to content

Commit

Permalink
chore: bump dependencies (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh authored Feb 13, 2024
1 parent 7e70c8a commit d8b3a78
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 85 deletions.
10 changes: 5 additions & 5 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ labels:
- label: kind/feature
sync: true
matcher:
title: "^feat\\(.+\\)?: .+"
title: "^feat(\\(.+\\))?: .+"

- label: kind/fix
sync: true
matcher:
title: "^fix\\(.+\\)?: .+"
title: "^fix(\\(.+\\))?: .+"

- label: kind/chore
sync: true
matcher:
title: "^chore\\(.+\\)?: .+"
title: "^chore(\\(.+\\))?: .+"

- label: kind/refactor
sync: true
matcher:
title: "^refactor\\(.+\\)?: .+"
title: "^refactor(\\(.+\\))?: .+"

- label: kind/docs
sync: true
matcher:
title: "^docs\\(.+\\)?: .+"
title: "^docs(\\(.+\\))?: .+"

- label: kind/dependencies
sync: true
Expand Down
3 changes: 1 addition & 2 deletions example/vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"$schema": "https://openapi.vercel.sh/vercel.json",
"installCommand": "pnpm install",
"buildCommand": "pnpm turbo run generate",
"outputDirectory": ".contented/.preview/out/",
"framework": "nextjs"
"outputDirectory": ".contented/.preview/out/"
}
132 changes: 73 additions & 59 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 5 additions & 15 deletions workspace/eslint-config/index.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
module.exports = [
const tseslint = require('typescript-eslint');

module.exports = tseslint.config(
{
ignores: ['**/*.js', '**/*.d.ts', '**/*.d.ts.map'],
},
require('@eslint/js').configs.recommended,
{
files: ['**/*.{ts,tsx}'],
plugins: {
'@typescript-eslint': require('@typescript-eslint/eslint-plugin'),
},
rules: require('@typescript-eslint/eslint-plugin').configs.recommended.rules,
languageOptions: {
parser: require('@typescript-eslint/parser'),
globals: {
__dirname: true,
},
},
},
...tseslint.configs.recommended,
{
plugins: {
'simple-import-sort': require('eslint-plugin-simple-import-sort'),
Expand Down Expand Up @@ -43,4 +33,4 @@ module.exports = [
},
},
require('eslint-config-prettier'),
];
);
7 changes: 3 additions & 4 deletions workspace/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
"main": "./index.js",
"dependencies": {
"@eslint/js": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0"
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"typescript-eslint": "^7.0.1"
}
}

0 comments on commit d8b3a78

Please sign in to comment.