Skip to content

Commit

Permalink
feat: ci:front and build:front tasks use new env variables CI_FRONT_T…
Browse files Browse the repository at this point in the history
…ASKS and BUILD_FRONT_TASKS
  • Loading branch information
nlepage committed Nov 5, 2024
1 parent 47bc042 commit 8640d9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"build": "run-s ci:front build:front",
"build:admin": "(cd admin && npm run build) && mkdir -p dist && cp -R admin/dist dist/admin",
"build:certif": "(cd certif && npm run build) && mkdir -p dist && cp -R certif/dist dist/certif",
"build:front": "run-p --print-label --max-parallel 2 build:mon-pix build:orga build:certif build:admin build:junior",
"build:front": "run-p --print-label --max-parallel 2 ${BUILD_FRONT_TASKS-build:mon-pix build:orga build:certif build:admin build:junior}",
"build:mon-pix": "(cd mon-pix && npm run build) && mkdir -p dist && cp -R mon-pix/dist dist/app",
"build:orga": "(cd orga && npm run build) && mkdir -p dist && cp -R orga/dist dist/orga",
"build:junior": "(cd junior && npm run build) && mkdir -p dist && cp -R junior/dist dist/junior",
Expand All @@ -34,7 +34,7 @@
"ci:api": "cd api && npm ci",
"ci:audit-logger": "cd audit-logger && npm ci",
"ci:certif": "cd certif && npm ci",
"ci:front": "run-p --print-label ci:mon-pix ci:orga ci:certif ci:admin ci:junior",
"ci:front": "run-p --print-label ${CI_FRONT_TASKS-ci:mon-pix ci:orga ci:certif ci:admin ci:junior}",
"ci:mon-pix": "cd mon-pix && npm ci",
"ci:orga": "cd orga && npm ci",
"ci:junior": "cd junior && npm ci",
Expand Down Expand Up @@ -106,4 +106,4 @@
"peerDependencies": {
"markdown-link-check": "^3.8.6"
}
}
}

0 comments on commit 8640d9c

Please sign in to comment.