Chore/update pnpm run dev (#4154)

update pnpm run dev
This commit is contained in:
Henry Heng 2025-03-10 15:33:06 +00:00 committed by GitHub
parent 69a272201a
commit 93cf47ce40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 397 additions and 485 deletions

View File

@ -13,7 +13,7 @@
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo run build",
"build-force": "pnpm clean && turbo run build --force", "build-force": "pnpm clean && turbo run build --force",
"dev": "turbo run dev --parallel", "dev": "turbo run dev --parallel --no-cache",
"start": "run-script-os", "start": "run-script-os",
"start:windows": "cd packages/server/bin && run start", "start:windows": "cd packages/server/bin && run start",
"start:default": "cd packages/server/bin && ./run start", "start:default": "cd packages/server/bin && ./run start",

View File

@ -5,7 +5,6 @@
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"start": "node dist/index.js", "start": "node dist/index.js",
"dev": "concurrently \"tsc-watch --noClear -p ./tsconfig.json\" \"nodemon\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0" "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
}, },
"license": "SEE LICENSE IN LICENSE.md", "license": "SEE LICENSE IN LICENSE.md",

View File

@ -7,7 +7,6 @@
"scripts": { "scripts": {
"build": "tsc && gulp", "build": "tsc && gulp",
"dev:gulp": "gulp", "dev:gulp": "gulp",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"pnpm dev:gulp\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf dist", "clean": "rimraf dist",
"nuke": "rimraf dist node_modules .turbo" "nuke": "rimraf dist node_modules .turbo"

View File

@ -1,6 +1,6 @@
{ {
"ignore": ["**/*.spec.ts", ".git", "node_modules"], "ignore": ["**/*.spec.ts", ".git", "node_modules"],
"watch": ["commands", "index.ts", "src", "../components/nodes", "../components/src"], "watch": ["commands", "index.ts", "src"],
"exec": "pnpm start", "exec": "pnpm start",
"ext": "ts" "ext": "ts"
} }

View File

@ -28,7 +28,7 @@
"start:default": "cd bin && ./run start", "start:default": "cd bin && ./run start",
"start-worker:windows": "cd bin && run worker", "start-worker:windows": "cd bin && run worker",
"start-worker:default": "cd bin && ./run worker", "start-worker:default": "cd bin && ./run worker",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"pnpm start\"", "dev": "nodemon",
"oclif-dev": "run-script-os", "oclif-dev": "run-script-os",
"oclif-dev:windows": "cd bin && dev start", "oclif-dev:windows": "cd bin && dev start",
"oclif-dev:default": "cd bin && ./dev start", "oclif-dev:default": "cd bin && ./dev start",

View File

@ -39,7 +39,7 @@
"notistack": "^2.0.4", "notistack": "^2.0.4",
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"react": "^18.2.0", "react": "^18.2.0",
"react-code-blocks": "^0.0.9-0", "react-code-blocks": "^0.1.6",
"react-color": "^2.19.3", "react-color": "^2.19.3",
"react-datepicker": "^4.21.0", "react-datepicker": "^4.21.0",
"react-device-detect": "^1.17.0", "react-device-detect": "^1.17.0",

File diff suppressed because one or more lines are too long