Skip to content

Commit

Permalink
remove '&&'
Browse files Browse the repository at this point in the history
  • Loading branch information
darian committed Nov 5, 2024
1 parent 90fadd1 commit f80f860
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"lint:fix": "eslint --max-warnings=0 --fix .",
"compose": "docker compose -f ./docker/dev/docker-compose.yml",
"compose:prod": "docker compose -f ./docker/prod/docker-compose.yml",
"localenv:start": "cross-env DEV_MODE=hot-reload && pnpm compose up -d --build",
"localenv:start:debug": "cross-env DEV_MODE=debug && pnpm compose up -d --build",
"localenv:start:lite": "cross-env DEV_MODE=lite && pnpm compose up -d --build",
"localenv:start": "cross-env DEV_MODE=hot-reload pnpm compose up -d --build",
"localenv:start:debug": "cross-env DEV_MODE=debug pnpm compose up -d --build",
"localenv:start:lite": "cross-env DEV_MODE=lite pnpm compose up -d --build",
"localenv:stop": "pnpm compose down",
"preinstall": "npx only-allow pnpm",
"prettier:write": "prettier --config '.prettierrc.js' --write .",
Expand Down

0 comments on commit f80f860

Please sign in to comment.