pi-usereq 0.32.0 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release-npm.yml +1 -7
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
|
@@ -57,9 +57,6 @@ jobs:
|
|
|
57
57
|
registry-url: 'https://registry.npmjs.org'
|
|
58
58
|
package-manager-cache: false # never use caching in release builds
|
|
59
59
|
|
|
60
|
-
# - name: Imposta il registro npm esplicitamente per OIDC
|
|
61
|
-
# run: npm config set registry https://registry.npmjs.org/
|
|
62
|
-
|
|
63
60
|
- name: Install dependencies
|
|
64
61
|
run: npm ci
|
|
65
62
|
|
|
@@ -70,10 +67,7 @@ jobs:
|
|
|
70
67
|
run: npm pkg delete private
|
|
71
68
|
|
|
72
69
|
- name: Publish package to npm
|
|
73
|
-
|
|
74
|
-
run: npm publish --provenance --access public
|
|
75
|
-
# env:
|
|
76
|
-
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
70
|
+
run: npm publish # Or: npm stage publish
|
|
77
71
|
|
|
78
72
|
- name: Build Changelog
|
|
79
73
|
id: build_changelog
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
|
|
4
|
+
### 🐛 Bug Fixes
|
|
5
|
+
- Clean workflow file after all tests and bug fixes.
|
|
6
|
+
|
|
3
7
|
## [0.32.0](https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0) - 2026-05-29
|
|
4
8
|
### 🐛 Bug Fixes
|
|
5
9
|
- Revert workflow.
|
|
@@ -484,6 +488,7 @@
|
|
|
484
488
|
- \[0.30.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.30.0
|
|
485
489
|
- \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
|
|
486
490
|
- \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
|
|
491
|
+
- \[0.33.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.33.0
|
|
487
492
|
|
|
488
493
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
489
494
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -515,3 +520,4 @@
|
|
|
515
520
|
[0.30.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.29.0..v0.30.0
|
|
516
521
|
[0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
|
|
517
522
|
[0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
|
|
523
|
+
[0.33.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0
|
package/README.md
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* @brief Declares the extension version string.
|
|
9
9
|
* @details The value is exported for external inspection and packaging metadata alignment. Access complexity is O(1).
|
|
10
10
|
*/
|
|
11
|
-
export const VERSION = "0.
|
|
11
|
+
export const VERSION = "0.33.0";
|
|
12
12
|
|
|
13
13
|
import fs from "node:fs";
|
|
14
14
|
import path from "node:path";
|