Skip to content

Commit

Permalink
chore: bump version & eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tianyingchun committed Jul 10, 2024
1 parent a79cd47 commit 2a752da
Show file tree
Hide file tree
Showing 7 changed files with 339 additions and 755 deletions.
5 changes: 5 additions & 0 deletions .changeset/slow-guests-impress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hyperse/hyper-env": patch
---

bump version & eslint
6 changes: 2 additions & 4 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
"recommendations": ["dbaeumer.vscode-eslint"]
}
15 changes: 4 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,10 @@
"request": "launch",
"name": "Debug Test File",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"test-unit"
],
"skipFiles": [
"<node_internals>/**"
],
"args": [
"${relativeFile}"
],
"runtimeArgs": ["run-script", "test-unit"],
"skipFiles": ["<node_internals>/**"],
"args": ["${relativeFile}"],
"env": {}
}
]
}
}
12 changes: 5 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
"files.associations": {
"*.css": "tailwindcss"
},
// Disable vscode formatting for js,jsx,ts,tsx files
// to allow dbaeumer.vscode-eslint to format them
"[javascript]": {
"editor.formatOnSave": false
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
"editor.formatOnSave": false
},
}
"[jsonc]": {
"editor.formatOnSave": false
}
}
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,32 +53,33 @@
"@vercel/nft": "^0.27.2",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"globby": "^14.0.1",
"globby": "^14.0.2",
"minimist": "^1.2.8"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.5",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "^1.0.9",
"@hyperse/eslint-config-hyperse": "^1.0.10",
"@hyperse/exec-program": "^1.0.6",
"@types/node": "^20.14.6",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.5.0",
"eslint": "^9.6.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"next": "14.2.4",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^2.0.1"
},
"engines": {
"node": ">=18"
Expand Down
23 changes: 4 additions & 19 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,12 @@
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"types": [
"vitest/globals"
],
"types": ["vitest/globals"],
"paths": {},
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"isolatedModules": true,
"jsx": "preserve"
},
"exclude": [
"**/node_modules",
"**/.*/",
"dist",
"build"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
"exclude": ["**/node_modules", "**/.*/", "dist", "build"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
Loading

0 comments on commit 2a752da

Please sign in to comment.