File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Using Docker locally gives you the most realistic simulation of a production
38
38
environment:
39
39
40
40
``` sh
41
- npm run serve :docker
41
+ npm run start :docker
42
42
```
43
43
44
44
## Ports
Original file line number Diff line number Diff line change 11
11
"test" : " wireit" ,
12
12
"build:dev" : " wireit" ,
13
13
"build:prod" : " wireit" ,
14
- "serve :docker" : " docker-compose -f docker/docker-compose.yml up --build --remove-orphans" ,
15
- "watch:dev" : " npm run build:dev && (npm run serve :dev > /dev/null 2>&1 & WIREIT_FAILURES=continue npm run build-and-check:dev --watch)" ,
16
- "watch:prod" : " npm run build:prod && (npm run serve :prod & WIREIT_FAILURES=continue npm run build-and-check:prod --watch)" ,
14
+ "start :docker" : " docker-compose -f docker/docker-compose.yml up --build --remove-orphans" ,
15
+ "watch:dev" : " npm run build:dev && (npm run start :dev > /dev/null 2>&1 & WIREIT_FAILURES=continue npm run build-and-check:dev --watch)" ,
16
+ "watch:prod" : " npm run build:prod && (npm run start :prod & WIREIT_FAILURES=continue npm run build-and-check:prod --watch)" ,
17
17
"check" : " wireit" ,
18
18
"check:lint" : " wireit" ,
19
19
"build-and-check:dev" : " wireit" ,
Original file line number Diff line number Diff line change 9
9
"scripts" : {
10
10
"build" : " wireit" ,
11
11
"check" : " wireit" ,
12
- "serve :dev" : " wireit" ,
13
- "serve :prod" : " wireit"
12
+ "start :dev" : " wireit" ,
13
+ "start :prod" : " wireit"
14
14
},
15
15
"wireit" : {
16
16
"build" : {
36
36
],
37
37
"output" : []
38
38
},
39
- "serve :dev" : {
39
+ "start :dev" : {
40
40
"command" : " node --enable-source-maps ./lib/dev-server.js" ,
41
41
"dependencies" : [
42
42
" build"
43
43
]
44
44
},
45
- "serve :prod" : {
45
+ "start :prod" : {
46
46
"command" : " node --enable-source-maps ./lib/prod-server.js" ,
47
47
"dependencies" : [
48
48
" build"
You can’t perform that action at this time.
0 commit comments