Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cross-env for windows dev support #1313

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
],
"scripts": {
"build": "vite build",
"build:dev": "NODE_ENV=development npm run build",
"build:dev": "cross-env NODE_ENV=development vite build --mode development",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:server": "node-red -u ./cypress/fixtures/user-dir/ -p 1881",
"dev": "NODE_ENV=development vite build --watch",
"dev": "cross-env NODE_ENV=development vite build --mode development --watch",
"dev:prod": "vite build --watch",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
Expand Down Expand Up @@ -69,6 +69,7 @@
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-vue": "^5.0.4",
"chart.js": "^4.4.0",
"cross-env": "^7.0.3",
"cypress": "^13.12.0",
"dompurify": "^3.0.5",
"eslint": "^8.53.0",
Expand Down
Loading