We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21fe3c0 commit cf1f792Copy full SHA for cf1f792
localenv/analytics/package.json
@@ -3,7 +3,7 @@
3
"version": "1.0.0",
4
"private": true,
5
"scripts": {
6
- "start": "docker compose up -d",
7
- "stop": "docker compose down"
+ "dev": "docker compose up -d",
+ "down": "docker compose down"
8
}
9
package.json
@@ -17,8 +17,8 @@
17
"lint:check": "eslint . --cache --cache-location 'node_modules/.cache/eslintcache'",
18
"typecheck": "pnpm -r typecheck",
19
"test": "pnpm -r test",
20
- "analytics:start": "pnpm -C localenv/analytics start",
21
- "analytics:stop": "pnpm -C localenv/analytics stop"
+ "analytics:dev": "pnpm -C localenv/analytics dev",
+ "analytics:down": "pnpm -C localenv/analytics down"
22
},
23
"devDependencies": {
24
"@eslint/js": "^9.39.4",
0 commit comments