Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tianyingchun committed Jul 27, 2024
1 parent 457288c commit 29ea1a7
Show file tree
Hide file tree
Showing 9 changed files with 286 additions and 262 deletions.
5 changes: 5 additions & 0 deletions .changeset/curvy-islands-camp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hyperse/eslint-config-hyperse": patch
---

bump version
2 changes: 1 addition & 1 deletion examples/next/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"paths": {
"@hyperse/eslint-config-hyperse": ["../../src/index.ts"]
},
"types": ["vitest/globals"],
"types": ["vitest/globals", "node"],
"lib": ["dom", "dom.iterable", "esnext"],
"isolatedModules": true,
"jsx": "preserve"
Expand Down
2 changes: 1 addition & 1 deletion examples/node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@hyperse/eslint-config-hyperse": ["../../src/index.ts"]
},

"types": ["vitest/globals"]
"types": ["vitest/globals", "node"]
},
"exclude": ["**/node_modules", "**/.*/", "dist", "build"]
}
4 changes: 3 additions & 1 deletion examples/react/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import React from 'react';

export const test = () => {
return <div className="ddd">hello world</div>;
return <div className="">hello world</div>;
};
3 changes: 2 additions & 1 deletion examples/react/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
"allowJs": false,
"noEmit": false,
"incremental": true,
"jsx": "react-jsx",
"paths": {
"@hyperse/eslint-config-hyperse": ["../../src/index.ts"]
},
"types": ["vitest/globals"]
"types": ["vitest/globals", "node"]
},
"exclude": ["**/node_modules", "**/.*/", "dist", "build"]
}
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,48 +68,49 @@
}
},
"dependencies": {
"@eslint/js": "^9.7.0",
"@eslint/js": "^9.8.0",
"@next/eslint-plugin-next": "^14.2.5",
"app-root-path": "^3.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-vitest": "^0.5.4",
"get-tsconfig": "^4.7.6",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6",
"tailwindcss": "^3.4.7",
"typescript-eslint": "^8.0.0-alpha.27"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@swc/core": "^1.7.0",
"@swc/core": "^1.7.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.14.11",
"@types/node": "20.14.12",
"@types/react": "^18.3.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.7.0",
"husky": "9.1.1",
"eslint": "^9.8.0",
"husky": "9.1.3",
"lint-staged": "15.2.7",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"swc-unplugin-ts": "1.0.3",
"tsup": "^8.1.2",
"tsup": "^8.2.3",
"tsx": "^4.16.2",
"typescript": "5.5.3",
"typescript": "5.5.4",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.3"
"vitest": "2.0.4"
},
"peerDependencies": {
"eslint": ">=9.3.0",
Expand Down
2 changes: 2 additions & 0 deletions src/getDefaultIgnorePatterns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ export const getDefaultIgnorePatterns = (ignores: string[] = []) => {
'**/build',
'**/dist',
'**/public',
'**/fixtures',
'**/.storybook',
'**/.vscode-test',
'**/storybook-static',
'**/miniprogram',
...ignores,
];
};
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"noEmit": false,
"incremental": true,
"paths": {},
"types": ["@types/node", "vitest/globals"]
"types": ["node", "vitest/globals"]
},
"exclude": ["**/node_modules", "**/.*/", "dist", "build"]
}
Loading

0 comments on commit 29ea1a7

Please sign in to comment.