|
25 | 25 | "scripts": { |
26 | 26 | "clean": "rimraf .cache packages/*/{dist,.cache}", |
27 | 27 | "prebuild": "yarn workspaces foreach run prebuild", |
28 | | - "build": "yarn prebuild && tsc --build ./tsconfig.build.json", |
| 28 | + "build": "yarn prebuild && tsc --build ./tsconfig.build.json && yarn postbuild", |
| 29 | + "postbuild": "yarn workspaces foreach run postbuild", |
29 | 30 | "prelint": "yarn workspaces foreach run prelint", |
30 | 31 | "lint": "yarn prelint && yarn lint.prettier && yarn lint.eslint", |
31 | 32 | "lint.fix": "yarn lint.prettier --write && yarn lint.eslint --fix", |
|
37 | 38 | "test.harness": "yarn pretest.harness && jest -c test-harness/jest.config.mjs", |
38 | 39 | "test.jest": "jest --silent --cacheDirectory=.cache/.jest", |
39 | 40 | "test.karma": "karma start", |
40 | | - "prepare": "husky install", |
| 41 | + "prepare": "husky install && yarn workspaces foreach run prepare", |
41 | 42 | "prerelease": "patch-package", |
42 | 43 | "release": "yarn prerelease && multi-semantic-release --deps.bump=satisfy", |
43 | 44 | "jest": "jest" |
|
58 | 59 | "@semantic-release/commit-analyzer", |
59 | 60 | "@semantic-release/release-notes-generator", |
60 | 61 | "@semantic-release/changelog", |
| 62 | + [ |
| 63 | + "@semantic-release/exec", |
| 64 | + { |
| 65 | + "publishCmd": "node scripts/inline-version.mjs ${nextRelease.version}" |
| 66 | + } |
| 67 | + ], |
61 | 68 | "@semantic-release/npm", |
62 | 69 | [ |
63 | 70 | "@semantic-release/github", |
|
73 | 80 | "@commitlint/config-conventional": "^12.1.4", |
74 | 81 | "@octokit/core": "^3.5.1", |
75 | 82 | "@semantic-release/changelog": "^6.0.3", |
| 83 | + "@semantic-release/exec": "^6.0.3", |
76 | 84 | "@semantic-release/git": "^10.0.1", |
77 | 85 | "@semantic-release/github": "^8.1.0", |
78 | 86 | "@semantic-release/npm": "^9.0.2", |
|
0 commit comments