We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4892c0 commit 0d81ef1Copy full SHA for 0d81ef1
3 files changed
.github/workflows/publish.yml
@@ -32,6 +32,8 @@ jobs:
32
node-version: 22
33
registry-url: 'https://registry.npmjs.org'
34
- run: npm ci
35
+ - name: Build library
36
+ run: npm run build_lib
37
- name: Publish to NPM
38
run: npx release-plan publish --provenance
39
env:
package.json
@@ -16,7 +16,6 @@
16
"ng": "ng",
17
"npm_pack": "cd dist/angular-shepherd && npm pack",
18
"package": "npm run build_lib && npm run npm_pack",
19
- "prepublishOnly": "npm run build_lib",
20
"start": "ng serve",
21
"test": "ng test"
22
},
projects/shepherd/package.json
@@ -29,5 +29,8 @@
29
"publishConfig": {
30
"registry": "https://registry.npmjs.org",
31
"directory": "../../dist/angular-shepherd"
+ },
+ "release-plan": {
+ "tagFormat": "v${version}"
}
0 commit comments