Skip to content

Commit

Permalink
chore(deps): bump package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlu-tw committed Dec 31, 2024
1 parent 74721fb commit ec5980c
Show file tree
Hide file tree
Showing 11 changed files with 2,957 additions and 2,926 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected].3/schema.json",
"$schema": "https://unpkg.com/@changesets/[email protected].5/schema.json",
"changelog": [
"@changesets/changelog-github",
{
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
- name: Lint
run: pnpm run lint

- name: Format
run: pnpm run format

- name: TypeCheck
run: pnpm run typecheck

Expand All @@ -68,7 +71,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node_version: [20]
node_version: [20, 22]
# node_version: [18, 20]
# include:
# # Active LTS + other OS
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.18.0
v22.12.0
8 changes: 7 additions & 1 deletion .vscode/.cspell/other.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,28 @@ autorestart
bluewood
breakline
datetime
eslintcache
evenodd
Fira
formatcache
fullname
infile
jiti
lintcache
multistep
noborder
noobserver
Noto
Overriden
preinstall
prettiercache
shellcheck
stroustrup
toggleable
tsbuildinfo
typecheck
typecheckcache
unref
viewports
wght
zod's
viewports
3 changes: 3 additions & 0 deletions .vscode/.cspell/repo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ markdownlint
maska
mastercss
mcss
nitropack
notionhq
nuxt
nuxtjs
persistedstate
pinia
postcss
resvg
shadcn
splide
splidejs
Stylelint
Expand All @@ -31,6 +33,7 @@ toastify
tseslint
tsup
Turborepo
unhead
unplugin
unstorage
versionrc
Expand Down
9 changes: 8 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
"recommendations": ["EditorConfig.EditorConfig", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "DavidAnson.vscode-markdownlint", "streetsidesoftware.code-spell-checker"]
"recommendations": [
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"DavidAnson.vscode-markdownlint",
"streetsidesoftware.code-spell-checker",
"yoavbls.pretty-ts-errors"

Check warning on line 8 in .vscode/extensions.json

View workflow job for this annotation

GitHub Actions / Lint

Unknown word (yoavbls)
]
}
22 changes: 9 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,25 @@
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},

"editor.formatOnPaste": false, // required
"editor.formatOnType": false, // required
"editor.formatOnSave": false, // optional, if you use ESlint,this should be false
"editor.formatOnSaveMode": "file", // required to format on save

"editor.quickSuggestions": {
"strings": true
},

"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.fixAll.markdownlint": "explicit"
},

"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "vue", "html", "json", "jsonc", "yaml", "toml"],
"eslint.workingDirectories": [{ "pattern": "./apps/*" }, { "pattern": "./packages/*" }],
"eslint.workingDirectories": [
{ "pattern": "./apps/*" },
{ "pattern": "./packages/*" },
{ "pattern": "./packages/{styles,tests,tooling,versions}/*" },
{ "pattern": "./packages/styles/mastercsss/*" }

Check warning on line 23 in .vscode/settings.json

View workflow job for this annotation

GitHub Actions / Lint

Unknown word (mastercsss)
],
// "eslint.trace.server": "verbose",

// Silent the stylistic rules in you IDE, but still auto fix them
// "eslint.rules.customizations": [
// { "rule": "style/*", "severity": "off" },
Expand All @@ -39,13 +36,12 @@
// { "rule": "*quotes", "severity": "off" },
// { "rule": "*semi", "severity": "off" }
// ],

"stylelint.enable": true,
"stylelint.validate": ["css", "less", "postcss", "sass", "scss", "vue", "html"],
"css.validate": false,
"less.validate": false,
"scss.validate": false,

"vitest.disableWorkspaceWarning": true,
"commentTranslate.hover.enabled": false
"editor.quickSuggestions": {
"strings": true
}
}
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import config from '@alanlu-dev/eslint-config-flat'
import config from '@alanlu-dev/eslint-config'

export default config
86 changes: 44 additions & 42 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@alanlu-dev/monorepo",
"type": "commonjs",
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.1",
"packageManager": "pnpm@9.15.2",
"description": "A monorepo starter template.",
"author": "Alan Lu <[email protected]> (https://github.com/alanlu-zyl)",
"license": "MIT",
Expand All @@ -14,8 +14,8 @@
"url": "https://github.com/alanlu-dev/monorepo/issues"
},
"engines": {
"node": ">=20.18.0",
"pnpm": ">=9.12.1",
"node": ">=20",
"pnpm": ">=9.15.2",
"npm": "use pnpm please!",
"yarn": "use pnpm please!"
},
Expand All @@ -25,21 +25,23 @@
"packages:prepare": "turbo run pkg:prepare",
"apps:prepare": "turbo run app:prepare",
"apps:cleanup": "turbo run cleanup",
"turbo:clean": "npx rimraf --glob ./**/.turbo",
"modules:clean": "npx rimraf --glob ./**/node_modules ./pnpm-lock.yaml",
"pnpm:clean": "pnpm store prune",
"build:clean": "turbo run build:clean --filter=./packages/**",
"clean:pnpm": "pnpm store prune",
"clean:turbo": "npx rimraf --glob ./**/.turbo ./**/.cache",
"clean:modules": "npx rimraf --glob ./**/node_modules ./pnpm-lock.yaml",
"clean:build": "turbo run clean:build --filter=./packages/** --filter=./apps/**",
"build": "turbo run build",
"rebuild:all": "pnpm build:clean && turbo run build --force --no-cache",
"check": "turbo run test lint typecheck --parallel && pnpm lint:cspell",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"coverage": "turbo run coverage",
"build:force": "pnpm clean:build && turbo run build --force --no-cache",
"format": "turbo run format --continue -- --cache --cache-location .cache/.formatcache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.formatcache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.lintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.lintcache",
"lint:cspell": "pnpm cspell . --unique --no-progress --no-must-find-files",
"lint:cspell:only-changed": "git diff --name-only | npx cspell --file-list stdin",
"nuxt-demo": "pnpm --filter=@alanlu-dev/nuxt-demo",
"nuxt-demo:dev": "turbo run dev --filter=@alanlu-dev/nuxt-demo --filter=./packages/**",
"lint:cspell:only-changed": "git diff --name-only | npx cspell --file-list stdin --no-must-find-files",
"lint:ws": "pnpm dlx sherif@latest -r packages-without-package-json",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test-e2e": "turbo run test-e2e",
"taze": "npx taze",
"change": "changeset",
"change:commit": "pnpm auto-changeset",
Expand All @@ -50,31 +52,31 @@
"commit:changeset": "czg :changeset"
},
"devDependencies": {
"@alanlu-dev/changeset": "^1.0.8",
"@alanlu-dev/commitlint-config": "^1.0.8",
"@alanlu-dev/eslint-config-flat": "^0.0.14",
"@alanlu-dev/lint-staged-config": "^1.0.11",
"@alanlu-dev/markdownlint-config": "^1.0.5",
"@alanlu-dev/mastercss-config": "^1.0.12",
"@alanlu-dev/prettier-config": "^1.0.5",
"@alanlu-dev/stylelint-config": "^1.0.13",
"@alanlu-dev/tsconfig": "^1.0.10",
"@alanlu-dev/types": "^1.0.10",
"@alanlu-dev/changeset": "^1.0.10",
"@alanlu-dev/commitlint-config": "^1.0.10",
"@alanlu-dev/eslint-config": "^0.0.2",
"@alanlu-dev/lint-staged-config": "^1.0.13",
"@alanlu-dev/markdownlint-config": "^1.0.7",
"@alanlu-dev/playwright-config": "0.1.3",
"@alanlu-dev/prettier-config": "^1.0.7",
"@alanlu-dev/stylelint-config": "^1.0.15",
"@alanlu-dev/tsconfig": "^1.0.12",
"@alanlu-dev/types": "^1.0.12",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.7.6",
"@vitest/coverage-v8": "^2.1.3",
"cspell": "^8.15.3",
"dotenv": "^16.4.5",
"happy-dom": "^15.10.1",
"husky": "^9.1.6",
"playwright-core": "^1.48.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.1.3",
"unbuild": "3.0.0-rc.11",
"vite": "^5.4.9",
"vitest": "^2.1.3"
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"cspell": "^8.17.1",
"dotenv": "^16.4.7",
"happy-dom": "^16.2.8",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"unbuild": "3.2.0",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}
Loading

0 comments on commit ec5980c

Please sign in to comment.