Skip to content

Commit a37dbae

Browse files
committed
Bump to v1.1.4
1 parent 5f3a6fd commit a37dbae

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/provenance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ jobs:
2222
with:
2323
debug: ${{ inputs.debug }}
2424
package-name: '@socketregistry/packageurl-js'
25+
setup-script: 'pnpm run build'
2526
use-trusted-publishing: true

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [1.1.4](https://github.com/SocketDev/socket-packageurl-js/releases/tag/v1.1.4) - 2025-09-29
8+
9+
### Fixed
10+
- Fixed publishing workflow to ensure dist folder is built before npm publish
11+
- Changed prepublishOnly script to prevent accidental local publishing
12+
713
## [1.1.3](https://github.com/SocketDev/socket-packageurl-js/releases/tag/v1.1.3) - 2025-09-29
814

915
### Fixed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socketregistry/packageurl-js",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"description": "Socket.dev optimized package override for packageurl-js",
66
"keywords": [
@@ -56,7 +56,7 @@
5656
"lint-staged": "lint-staged",
5757
"precommit": "lint-staged",
5858
"prepare": "husky",
59-
"prepublishOnly": "pnpm run build",
59+
"prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1",
6060
"pretest:unit": "dotenvx -q run -f .env.test -- pnpm run build",
6161
"test": "run-s check test:*",
6262
"test:unit": "dotenvx -q run -f .env.test -- vitest --run",

0 commit comments

Comments
 (0)