shapes-ui 0.1.1 → 0.1.4
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.yml +8 -6
- package/CHANGELOG.md +18 -0
- package/dist/cli.js +222 -1408
- package/package.json +26 -21
- package/tsup.config.ts +1 -0
- package/dist/client/.assetsignore +0 -2
- package/dist/server/.vite/manifest.json +0 -2435
|
@@ -14,16 +14,21 @@ jobs:
|
|
|
14
14
|
permissions:
|
|
15
15
|
contents: write
|
|
16
16
|
pull-requests: write
|
|
17
|
+
id-token: write
|
|
17
18
|
steps:
|
|
18
19
|
- name: Checkout Repo
|
|
19
20
|
uses: actions/checkout@v4
|
|
21
|
+
with:
|
|
22
|
+
fetch-depth: 0
|
|
20
23
|
|
|
21
|
-
- name: Setup Node.js
|
|
24
|
+
- name: Setup Node.js 24
|
|
22
25
|
uses: actions/setup-node@v4
|
|
23
26
|
with:
|
|
24
|
-
node-version:
|
|
27
|
+
node-version: 24
|
|
28
|
+
registry-url: "https://registry.npmjs.org"
|
|
25
29
|
|
|
26
|
-
-
|
|
30
|
+
- name: Install pnpm
|
|
31
|
+
uses: pnpm/action-setup@v3
|
|
27
32
|
with:
|
|
28
33
|
version: 9
|
|
29
34
|
|
|
@@ -34,11 +39,8 @@ jobs:
|
|
|
34
39
|
id: changesets
|
|
35
40
|
uses: changesets/action@v1
|
|
36
41
|
with:
|
|
37
|
-
# This runs when changesets are detected to create a PR,
|
|
38
|
-
# OR when the version PR is merged to publish.
|
|
39
42
|
publish: pnpm release
|
|
40
43
|
commit: "chore: version packages"
|
|
41
44
|
title: "chore: version packages"
|
|
42
45
|
env:
|
|
43
46
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
44
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# shapes-ui
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 56b186b: Updated node version in workflow file
|
|
8
|
+
|
|
9
|
+
## 0.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 843d016: Added npm oidc for automated publishing
|
|
14
|
+
|
|
15
|
+
## 0.1.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- f753ba1: Fixed cli dependencies which were bundled with wrong strategy
|
|
20
|
+
|
|
3
21
|
## 0.1.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|