Skip to content

Commit

Permalink
Separate doc generation from build task
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-koehler committed Jul 11, 2023
1 parent cf6cb53 commit a508131
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
run: |
pnpm i --frozen-lockfile
pnpm run build
pnpm run doc
pnpm run bundle
- name: Lint
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
},
"scripts": {
"lerna": "lerna",
"preparePublish": "git clean -dfx && pnpm i --frozen-lockfile && pnpm run clean && pnpm run build && pnpm run test",
"preparePublish": "git clean -dfx && pnpm i --frozen-lockfile && pnpm run clean && pnpm run build && pnpm run doc && pnpm run test",
"merge-report": "mkdir -p coverage && lcov-result-merger 'packages/**/coverage/lcov.info' 'coverage/lcov.info'",
"check-format": "echo 'temporarily disabled'",
"build": "lerna run build && lerna run doc",
"build": "lerna run build",
"bundle": "lerna run bundle",
"clean": "lerna run clean",
"doc": "lerna run doc",
"test": "lerna run test",
"test-cov": "lerna run test-cov",
"lint": "lerna run --no-bail lint",
Expand Down

0 comments on commit a508131

Please sign in to comment.