Skip to content

Commit

Permalink
ci: make ci great again
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Feb 2, 2024
1 parent 0ad1c91 commit 41d8350
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
printWidth: 100,
tabWidth: 2,
semi: false,
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"pnpm": "^7.0.0",
"yarn": "forbidden, use pnpm",
Expand Down Expand Up @@ -90,7 +91,7 @@
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"playwright-chromium": "^1.41.1",
"prettier": "^2.3.2",
"prettier": "^3.2.4",
"prompts": "^2.4.1",
"publint": "^0.2.7",
"rimraf": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/checker-vls/src/diagnostics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ enum DOC_VERSION {
init = -1,
}

export type LogLevel = typeof logLevels[number]
export type LogLevel = (typeof logLevels)[number]
export const logLevels = ['ERROR', 'WARN', 'INFO', 'HINT'] as const

let disposeSuppressConsole: ReturnType<typeof suppressConsole>
Expand Down
4 changes: 4 additions & 0 deletions playground/multiple-hmr/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"]
}
File renamed without changes.
1 change: 1 addition & 0 deletions playground/vitestSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export async function startDefaultServe({
server: {
port,
},
configFile: false,
}

if (!isBuild) {
Expand Down
10 changes: 8 additions & 2 deletions pnpm-lock.yaml

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

0 comments on commit 41d8350

Please sign in to comment.