Skip to content

Commit b9ea516

Browse files
committed
chore: wip
chore: wip chore: wip
1 parent b822418 commit b9ea516

File tree

95 files changed

+168
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+168
-254
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
First off, thank you for taking the time to contribute to the Stacks ecosystem ❤️
44

55
> **Note**
6-
> The likelihood is high that the repo you are working on is either a Stack or Stacks itself. In both cases, you will be exposed to a meshup of technologies, like [Vue][vue], [Vite][vite], [Tauri][tauri], [Nitro][nitro], and [Vitest][vitest].
6+
> The likelihood is high that the repo you are working on is either a Stack or Stacks itself. In both cases, you will be exposed to a meshup of technologies, like [Vue][vue], [Vite][vite], [Tauri][tauri], [Nitro][nitro], and [Bun][bun].
77
88
## 💭 Knowledge
99

@@ -150,7 +150,7 @@ buddy test:types # runs typecheck
150150

151151
## 🧪 Testing
152152

153-
All of the framework tests are stored within within the `./.stacks/tests` project folder. When adding or updating functionality, please ensure it is covered through our Vitest test suite. Ensure so by running `buddy test`.
153+
All the framework tests are stored within the `./.stacks/tests` project folder. When adding or updating functionality, please ensure it is covered through our test suite. Ensure so by running `buddy test`.
154154

155155
When working on an individual Stack, tests are stored within the `./tests` project folder & it is recommended to write tests (when useful). Bu
156156

@@ -184,7 +184,7 @@ Don't expect your PR to be accepted immediately or even accepted at all. Give th
184184
[vite]: https://vitejs.dev/
185185
[tauri]: https://tauri.app/
186186
[nitro]: https://nitro.unjs.io/
187-
[vitest]: https://vitest.dev/
187+
[bun]: https://bun.sh/
188188
[stacks]: https://github.com/stacksjs/stacks
189189
[semantic-commit-style]: https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716
190190
[pr-beginner-series]: https://app.egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github

.stacks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ _Enhanced productivity for developers. No more creating boilerplate._
9797
-**Code Snippets** _say goodbye to the boilerplate—thank you Sarah Drasner_
9898
- 🔤 **Spell Checker** _be notified once there are typos_
9999
- 🛠️ **Utilities** _Collections, VueUse, and more_
100-
- 🧪 **Testing** _unit & e2e tests powered by Vitest & Playwright_
100+
- 🧪 **Testing** _unit & e2e tests powered by Bun & Playwright_
101101

102102
No matter whether you are a beginner or an expert, the approachable Stacks design allows you to learn at your own pace, using our thorough documentation covering every aspect of the framework. Stacks is extremely beginner & expert-friendly.
103103

.stacks/core/actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
],
231231
"scripts": {
232232
"build": "bun build.ts",
233-
"dev": "unbuild --stub",
233+
"dev": "echo 'No dev script needed'",
234234
"typecheck": "tsc --noEmit"
235235
},
236236
"peerDependencies": {

.stacks/core/actions/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/ai/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/alias/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/analytics/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/arrays/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/auth/tests/example.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { assert, describe, test } from 'vitest'
2-
31
describe('example test', () => {
42
test('assert', () => {
53
assert.equal(1, 1)

.stacks/core/buddy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ _Enhanced productivity for developers. No more creating boilerplate._
9797
-**Code Snippets** _say goodbye to the boilerplate—thank you Sarah Drasner_
9898
- 🔤 **Spell Checker** _be notified once there are typos_
9999
- 🛠️ **Utilities** _Collections, VueUse, and more_
100-
- 🧪 **Testing** _unit & e2e tests powered by Vitest & Playwright_
100+
- 🧪 **Testing** _unit & e2e tests powered by Bun & Playwright_
101101

102102
No matter whether you are a beginner or an expert, the approachable Stacks design allows you to learn at your own pace, using our thorough documentation covering every aspect of the framework. Stacks is extremely beginner & expert-friendly.
103103

0 commit comments

Comments
 (0)