Skip to content

Commit 308c5e0

Browse files
committed
devops: fix release pipeline
1 parent a5568de commit 308c5e0

File tree

3 files changed

+2018
-16
lines changed

3 files changed

+2018
-16
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
},
1616
"scripts": {
1717
"test": "pnpm --stream -r test",
18-
"build": "pnpm --stream -r build"
18+
"build": "pnpm --stream -r build",
19+
"release": "pnpm --stream -r release",
20+
"playwright:version": "node -e \"console.log(require('./playwright-ct-web/package.json').dependencies['@playwright/experimental-ct-core'])\""
1921
}
2022
}

playwright-ct-angular/package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
"default": "./hooks.mjs"
4040
}
4141
},
42+
"scripts": {
43+
"release": "semantic-release"
44+
},
45+
"bin": {
46+
"playwright": "cli.js"
47+
},
4248
"dependencies": {
4349
"@playwright/experimental-ct-core": "1.53.0"
4450
},
@@ -47,15 +53,18 @@
4753
"@angular/core": "^17.0.0",
4854
"@angular/platform-browser-dynamic": "^17.0.0",
4955
"rxjs": "~7.8.1",
50-
"typescript": "~5.2.0"
56+
"typescript": "~5.2.0",
57+
"@semantic-release/commit-analyzer": "13.0.1",
58+
"@semantic-release/github": "11.0.3",
59+
"@semantic-release/git": "10.0.1",
60+
"@semantic-release/release-notes-generator": "14.0.3",
61+
"cz-conventional-changelog": "3.3.0",
62+
"semantic-release": "24.2.5"
5163
},
5264
"peerDependencies": {
5365
"@angular/compiler": "^17.0.0",
5466
"@angular/core": "^17.0.0",
5567
"@angular/platform-browser-dynamic": "^17.0.0",
5668
"typescript": ">=5.2.0"
57-
},
58-
"bin": {
59-
"playwright": "cli.js"
6069
}
6170
}

0 commit comments

Comments
 (0)