- Missed a few files that needed to be .jsx

- seperated out package locks per package
This commit is contained in:
Greg L
2023-11-23 18:34:19 -05:00
parent 35ad74f8a3
commit 4061dd0abb
19 changed files with 32528 additions and 21254 deletions
+4 -3
View File
@@ -11,12 +11,13 @@
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "kill-port 3000 5173 && pnpm --filter \"./packages/**\" dev",
"build": "pnpm --filter \"./packages/**\" build",
"dev": "kill-port 3000 5173 && pnpm --filter './packages/**' dev",
"build": "pnpm clean && pnpm -r --filter \"./packages/**\" build",
"start": "kill-port 3000 && run-script-os",
"start:windows": "cd packages/server/bin && run start",
"start:default": "cd packages/server/bin && ./run start",
"clean": "pnpm exec -ws -- rimraf dist build",
"clean": " pnpm --filter './packages/**' clean",
"nuke": " pnpm --filter './packages/**' nuke && rimraf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint-fix": "pnpm lint --fix",