Skip to content

Commit

Permalink
fix(build): add prepare steps to npm build command
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht authored Aug 29, 2021
1 parent 2be51a7 commit cb3a217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"generate": "stencil generate",
"prebuild": "npm run prepare-customization",
"build": "stencil build && echo $(date) > www/version.txt",
"build-charite": "cross-env LAYOUT=CHARITE npm run build",
"build-stanford": "cross-env SUPPORTED_LANGUAGES=en npm run build",
"build-charite": "npm run prepare-charite && cross-env LAYOUT=CHARITE npm run build",
"build-stanford": "npm run prepare-stanford && cross-env SUPPORTED_LANGUAGES=en npm run build",
"prestart": "npm run prepare-customization",
"start": "stencil build --dev --watch --serve --no-open",
"prepare-customization": "node ./scripts/prepare-customization.js",
Expand Down

0 comments on commit cb3a217

Please sign in to comment.