Skip to content

Commit a59e5ac

Browse files
committed
chore: wip
1 parent 7d52211 commit a59e5ac

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

public/planetscale.png

-73.7 KB
Binary file not shown.

public/pwa-192x192.png

-3.82 KB
Binary file not shown.

public/pwa-512x512.png

-10 KB
Binary file not shown.

public/stacks.png

-87.5 KB
Loading

public/stripe.png

-1.62 KB
Binary file not shown.

storage/framework/ide/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"vscode": "^2023.8.100"
3030
},
3131
"scripts": {
32-
"package": "vsce package",
33-
"release": "vsce publish"
32+
"package": "bunx vsce package",
33+
"release": "bunx vsce publish"
3434
},
3535
"galleryBanner": {
3636
"color": "#d7e4f5",

storage/framework/vcs/github/workflows/release.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,42 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v1
2121

22-
- name: Install dependencies
22+
- name: Use cached node_modules
23+
uses: actions/cache@v3
24+
with:
25+
path: node_modules
26+
key: nodeModules-${{ hashFiles('**/bun.lockb') }}
27+
restore-keys: |
28+
nodeModules-
29+
30+
- name: Install Dependencies
2331
run: bun install
2432

2533
- name: Set Application Key
26-
run: ./buddy key:generate
34+
run: bun buddy key:generate
2735

2836
- name: Prepublish # these packages are required for the "Publish framework" step
29-
run: pnpm --filter='./storage/framework/core' build
37+
run: cd storage/framework/core && bun run build
3038

3139
- name: Publish framework
32-
run: pnpm --filter='./storage/framework/core' publish:framework
40+
run: cd storage/framework/core && bun publish:framework
3341
env:
3442
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3543

3644
- name: Publish dummy libraries
37-
run: pnpm --filter='./storage/framework/core' publish:dummy-libs
45+
run: bunx pnpm --filter='./storage/framework/core' publish:dummy-libs
3846
env:
3947
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
4048

4149
- name: Publish VS Code Extension
42-
run: pnpm --filter './storage/framework/ide/vscode' release
50+
run: bunx pnpm --filter './storage/framework/ide/vscode' release
4351
env:
4452
VSCE_PAT: ${{ secrets.VSCE_PAT }}
4553

0 commit comments

Comments
 (0)