Skip to content

Commit 430a0cc

Browse files
committed
chore: wip
1 parent 023b8af commit 430a0cc

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/cache@v4
3737
with:
3838
path: node_modules
39-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
39+
key: node-modules-${{ hashFiles('**/bun.lock') }}
4040
restore-keys: |
4141
node-modules-
4242
@@ -65,7 +65,7 @@ jobs:
6565
uses: actions/cache@v4
6666
with:
6767
path: node_modules
68-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
68+
key: node-modules-${{ hashFiles('**/bun.lock') }}
6969
restore-keys: |
7070
node-modules-
7171
@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/cache@v4
118118
with:
119119
path: node_modules
120-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
120+
key: node-modules-${{ hashFiles('**/bun.lock') }}
121121
restore-keys: |
122122
node-modules-
123123
@@ -161,7 +161,7 @@ jobs:
161161
uses: actions/cache@v4
162162
with:
163163
path: node_modules
164-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
164+
key: node-modules-${{ hashFiles('**/bun.lock') }}
165165
restore-keys: |
166166
node-modules-
167167
@@ -196,7 +196,7 @@ jobs:
196196
uses: actions/cache@v4
197197
with:
198198
path: node_modules
199-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
199+
key: node-modules-${{ hashFiles('**/bun.lock') }}
200200
restore-keys: |
201201
node-modules-
202202
@@ -220,7 +220,7 @@ jobs:
220220
uses: actions/cache@v4
221221
with:
222222
path: node_modules
223-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
223+
key: node-modules-${{ hashFiles('**/bun.lock') }}
224224
restore-keys: |
225225
node-modules-
226226

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/cache@v4
2424
with:
2525
path: node_modules
26-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
26+
key: node-modules-${{ hashFiles('**/bun.lock') }}
2727
restore-keys: |
2828
node-modules-
2929

docs/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const sidebar = {
210210
},
211211
{ text: 'Unit & Feature Tests', link: '/bootcamp/how-to/testing' },
212212
{
213-
text: 'Review bun.lockb Diff',
213+
text: 'Review bun.lock Diff',
214214
link: '/bootcamp/how-to/bun-lockb',
215215
},
216216
],

storage/framework/cloud/bunfig.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ disableManifest = false
4444

4545
[install.lockfile]
4646

47-
# path to read bun.lockb from
48-
path = "bun.lockb"
47+
# path to read bun.lock from
48+
path = "bun.lock"
4949

50-
# path to save bun.lockb to
51-
savePath = "bun.lockb"
50+
# path to save bun.lock to
51+
savePath = "bun.lock"
5252

5353
# whether to save the lockfile to disk
5454
save = true

storage/framework/core/enums/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export enum NpmScript {
88
BuildFunctions = 'build:functions',
99
BuildDocs = 'build:docs',
1010
BuildStacks = 'build:stacks',
11-
Clean = 'bunx --bun rimraf bun.lockb node_modules/ stacks/**/dist',
11+
Clean = 'bunx --bun rimraf bun.lock node_modules/ stacks/**/dist',
1212
Dev = 'dev',
1313
DevApi = 'dev:api',
1414
DevDocs = 'dev:docs',

storage/framework/core/error-handling/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ result.isErr() // false
5555
### Example #2
5656

5757
```js
58-
const command = 'bunx --bun rimraf ./bun.lockb ./node_modules ./core/**/dist'
58+
const command = 'bunx --bun rimraf ./bun.lock ./node_modules ./core/**/dist'
5959
const result = await runCommand(command, options)
6060

6161
if (result.isOk()) {

storage/framework/core/utils/src/clean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { path as p } from '@stacksjs/path'
22

33
export async function cleanProject(): Promise<void> {
44
const $ = Bun.$
5-
await $`rm -rf ${p.projectPath('bun.lockb')}`
5+
await $`rm -rf ${p.projectPath('bun.lock')}`
66
await $`rm -rf ${p.projectPath('yarn.lock')}` // just in case
77
await $`rm -rf ${p.projectPath('node_modules/')}`
88
await $`rm -rf ${p.frameworkPath('dist')}`

storage/framework/defaults/vcs/github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/cache@v4
3434
with:
3535
path: node_modules
36-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
36+
key: node-modules-${{ hashFiles('**/bun.lock') }}
3737
restore-keys: |
3838
node-modules-
3939
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/cache@v4
6363
with:
6464
path: node_modules
65-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
65+
key: node-modules-${{ hashFiles('**/bun.lock') }}
6666
restore-keys: |
6767
node-modules-
6868
@@ -94,7 +94,7 @@ jobs:
9494
uses: actions/cache@v4
9595
with:
9696
path: node_modules
97-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
97+
key: node-modules-${{ hashFiles('**/bun.lock') }}
9898
restore-keys: |
9999
node-modules-
100100

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/cache@v4
2424
with:
2525
path: node_modules
26-
key: node-modules-${{ hashFiles('**/bun.lockb') }}
26+
key: node-modules-${{ hashFiles('**/bun.lock') }}
2727
restore-keys: |
2828
node-modules-
2929

storage/framework/scripts/fresh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
# delete ../../../bun.lockb
3+
# delete ../../../bun.lock
44
rm ../../bun.lock
55

66
# delete all node_modules and dist folders

0 commit comments

Comments
 (0)