Skip to content

Commit 946b25e

Browse files
committed
chore: wip
1 parent 0bfe858 commit 946b25e

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19+
# this is only needed while `bun publish` is not yet available (npm publish is used instead)
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: "lts/*"
24+
registry-url: "https://registry.npmjs.org"
25+
1926
- name: Setup Bun
2027
uses: oven-sh/setup-bun@v1
2128

storage/framework/core/src/bun-create/bud/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"config": {
127127
"commitizen": {
128-
"path": "stacks/node_modules/cz-git"
128+
"path": "node_modules/cz-git"
129129
}
130130
},
131131
"workspaces": [
@@ -142,7 +142,8 @@
142142
"git clone https://github.com/stacksjs/stacks.git ."
143143
],
144144
"postinstall": [
145-
"echo 'Done!'"
145+
"echo 'Done for now! But need to enable the following:'",
146+
"echo '1. run `buddy setup`"
146147
],
147148
"start": "bun run echo 'Hello world!'"
148149
}

storage/framework/core/src/bun-create/buddy/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"config": {
127127
"commitizen": {
128-
"path": "stacks/node_modules/cz-git"
128+
"path": "node_modules/cz-git"
129129
}
130130
},
131131
"workspaces": [
@@ -142,7 +142,8 @@
142142
"git clone https://github.com/stacksjs/stacks.git ."
143143
],
144144
"postinstall": [
145-
"echo 'Done!'"
145+
"echo 'Done for now! But need to enable the following:'",
146+
"echo '1. run `buddy setup`"
146147
],
147148
"start": "bun run echo 'Hello world!'"
148149
}

storage/framework/core/src/bun-create/stack/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"config": {
127127
"commitizen": {
128-
"path": "stacks/node_modules/cz-git"
128+
"path": "node_modules/cz-git"
129129
}
130130
},
131131
"workspaces": [
@@ -142,7 +142,8 @@
142142
"git clone https://github.com/stacksjs/stacks.git ."
143143
],
144144
"postinstall": [
145-
"echo 'Done!'"
145+
"echo 'Done for now! But need to enable the following:'",
146+
"echo '1. run `buddy setup`"
146147
],
147148
"start": "bun run echo 'Hello world!'"
148149
}

storage/framework/core/src/bun-create/stacks/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"config": {
127127
"commitizen": {
128-
"path": "stacks/node_modules/cz-git"
128+
"path": "node_modules/cz-git"
129129
}
130130
},
131131
"workspaces": [
@@ -142,7 +142,8 @@
142142
"git clone https://github.com/stacksjs/stacks.git ."
143143
],
144144
"postinstall": [
145-
"echo 'Done!'"
145+
"echo 'Done for now! But need to enable the following:'",
146+
"echo '1. run `buddy setup`"
146147
],
147148
"start": "bun run echo 'Hello world!'"
148149
}

storage/framework/core/src/bun-create/stx/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"config": {
127127
"commitizen": {
128-
"path": "stacks/node_modules/cz-git"
128+
"path": "node_modules/cz-git"
129129
}
130130
},
131131
"workspaces": [
@@ -142,7 +142,8 @@
142142
"git clone https://github.com/stacksjs/stacks.git ."
143143
],
144144
"postinstall": [
145-
"echo 'Done!'"
145+
"echo 'Done for now! But need to enable the following:'",
146+
"echo '1. run `buddy setup`"
146147
],
147148
"start": "bun run dev"
148149
}

storage/framework/core/src/tables/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"config": {
5353
"commitizen": {
54-
"path": "stacks/node_modules/cz-git"
54+
"path": "node_modules/cz-git"
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)