Skip to content

Commit

Permalink
pre-building package geoadmin before previewing the mapviewer
Browse files Browse the repository at this point in the history
as we are running a preview on a "from scratch" CI instance, geoadmin package has never been built (and added to the local npm registry for that matter).
Building the lib with the same target in mind before running the preview script on the viewer
  • Loading branch information
pakb committed Jan 31, 2025
1 parent 32895c5 commit 45ae933
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"build:dev": "npm run build:dev --workspaces",
"build:int": "npm run build:int --workspaces",
"build:prod": "npm run build:prod --workspaces",
"preview": "npm run preview --workspace=web-mapviewer",
"preview:dev": "npm run preview:dev --workspace=web-mapviewer",
"preview:int": "npm run preview:int --workspace=web-mapviewer",
"preview:prod": "npm run preview:prod --workspace=web-mapviewer",
"preview": "npm run build --workspace=geoadmin && npm run preview --workspace=web-mapviewer",
"preview:dev": "npm run build:dev --workspace=geoadmin && npm run preview:dev --workspace=web-mapviewer",
"preview:int": "npm run build:int --workspace=geoadmin && npm run preview:int --workspace=web-mapviewer",
"preview:prod": "npm run build:prod --workspace=geoadmin && npm run preview:prod --workspace=web-mapviewer",
"test:unit": "npm run test:unit --workspaces --if-present",
"test:unit:watch": "npm run test:unit:watch --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspace=web-mapviewer",
Expand Down

0 comments on commit 45ae933

Please sign in to comment.