@pixpilot/scaffoldfy-configs 0.40.0 → 0.40.2
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @pixpilot/scaffoldfy-configs
|
|
2
2
|
|
|
3
|
+
## 0.40.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- update REGISTRY_TOKEN usage in release workflow
|
|
8
|
+
|
|
9
|
+
## 0.40.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- update project setup action to use pixpilot/setup-pnpm-project@v1
|
|
14
|
+
- change default bundler to TSDown
|
|
15
|
+
|
|
3
16
|
## 0.40.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/scaffoldfy-configs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.40.
|
|
4
|
+
"version": "0.40.2",
|
|
5
5
|
"author": "PixPilot <m.doaie@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"@types/node": "^22.18.11",
|
|
31
31
|
"eslint": "^9.38.0",
|
|
32
32
|
"@internal/eslint-config": "0.3.0",
|
|
33
|
-
"@internal/
|
|
34
|
-
"@internal/vitest-config": "0.1.0",
|
|
33
|
+
"@internal/tsdown-config": "0.1.0",
|
|
35
34
|
"@pixpilot/scaffoldfy": "0.55.1",
|
|
36
|
-
"@internal/
|
|
35
|
+
"@internal/prettier-config": "0.0.1",
|
|
36
|
+
"@internal/vitest-config": "0.1.0"
|
|
37
37
|
},
|
|
38
38
|
"prettier": "@internal/prettier-config",
|
|
39
39
|
"publishConfig": {
|
|
@@ -21,9 +21,8 @@ jobs:
|
|
|
21
21
|
permissions:
|
|
22
22
|
contents: write
|
|
23
23
|
pull-requests: write
|
|
24
|
-
# Publishing targets GitHub Packages (publishConfig.registry in each
|
|
25
|
-
#
|
|
26
|
-
# trusted publishing.
|
|
24
|
+
# Publishing targets GitHub Packages (publishConfig.registry in each package.json),
|
|
25
|
+
# which authenticates with a token rather than npm OIDC trusted publishing.
|
|
27
26
|
packages: write
|
|
28
27
|
|
|
29
28
|
steps:
|
|
@@ -41,7 +40,7 @@ jobs:
|
|
|
41
40
|
token: ${{ steps.app_token.outputs.token }}
|
|
42
41
|
|
|
43
42
|
- name: Setup project
|
|
44
|
-
uses:
|
|
43
|
+
uses: pixpilot/github-actions/setup-pnpm-project@v1
|
|
45
44
|
with:
|
|
46
45
|
registry-url: 'https://npm.pkg.github.com'
|
|
47
46
|
# setup-node defaults the scope to the repository owner. Left to that
|
|
@@ -55,10 +54,9 @@ jobs:
|
|
|
55
54
|
uses: pixpilot/changesets-autopilot@v1
|
|
56
55
|
with:
|
|
57
56
|
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
|
|
58
|
-
#
|
|
59
|
-
#
|
|
60
|
-
#
|
|
61
|
-
|
|
62
|
-
REGISTRY_TOKEN: ${{ steps.app_token.outputs.token }}
|
|
57
|
+
# GitHub Packages auth. Must be a token with write:packages on the
|
|
58
|
+
# package scope; npm OIDC trusted publishing is npmjs-only.
|
|
59
|
+
# https://github.com/pixpilot-private
|
|
60
|
+
REGISTRY_TOKEN: ${{ secrets.PIXPILOT_PRIVATE_REGISTRY_TOKEN }}
|
|
63
61
|
# npm provenance attestation is not supported by npm.pkg.github.com.
|
|
64
62
|
provenance: 'false'
|