-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
2,957 additions
and
2,926 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.18.0 | ||
v22.12.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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!" | ||
}, | ||
|
@@ -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", | ||
|
@@ -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" | ||
} | ||
} |
Oops, something went wrong.