fix(dev): add curriculum build and clean steps (#44939)

* fix(dev): add curriculum build and clean steps
This commit is contained in:
Shaun Hamilton
2022-02-08 04:06:39 +02:00
committed by GitHub
parent 22ac598f6e
commit cd8fcd9f00

View File

@ -39,7 +39,7 @@
"build:client": "cd ./client && npm run build",
"build:curriculum": "cd ./curriculum && npm run build",
"build:server": "cd ./api-server && npm run build",
"clean": "npm-run-all clean:client clean:server clean:packages",
"clean": "npm-run-all clean:client clean:server clean:packages clean:curriculum",
"clean-and-develop": "npm run clean && npm ci && npm run develop",
"clean:client": "cd ./client && npm run clean",
"clean:curriculum": "shx rm ./config/curriculum.json",
@ -57,7 +57,7 @@
"cypress:prd:watch": "npm run cypress -- open",
"predevelop": "npm run create:config",
"develop": "npm-run-all build:curriculum -p develop:*",
"develop:client": "cd ./client && npm run develop",
"develop:client": "npm run build:curriculum && cd ./client && npm run develop",
"develop:server": "npm run predevelop && cd ./api-server && npm run develop",
"docs:serve": "docsify serve ./docs -o --port 3200",
"e2e": "npm run e2e:dev:run",