Skip to content

Commit b9a99e1

Browse files
committed
Single global vitest config, remove turbo
1 parent 9a6ebb5 commit b9a99e1

File tree

24 files changed

+32
-166
lines changed

24 files changed

+32
-166
lines changed

.github/workflows/page.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,6 @@ jobs:
2727
- name: Install Dependencies
2828
run: pnpm install --ignore-scripts
2929

30-
- name: Cache turbo build setup
31-
uses: actions/cache@v4
32-
with:
33-
path: node_modules/.cache/turbo
34-
key: turbo-${{ github.sha }}
35-
restore-keys: |
36-
turbo-
37-
3830
- name: Build
3931
run: pnpm build:packages
4032

.github/workflows/release-ext.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ jobs:
2424
- name: Install Dependencies
2525
run: pnpm install --ignore-scripts
2626

27-
- name: Cache turbo build setup
28-
uses: actions/cache@v4
29-
with:
30-
path: node_modules/.cache/turbo
31-
key: turbo-${{ github.sha }}
32-
restore-keys: |
33-
turbo-
34-
3527
- name: Build
3628
run: pnpm build
3729

.github/workflows/release.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@ jobs:
2626
- name: Install Dependencies
2727
run: pnpm install --no-frozen-lockfile --ignore-scripts
2828

29-
- name: Cache turbo build setup
30-
uses: actions/cache@v4
31-
with:
32-
path: node_modules/.cache/turbo
33-
key: turbo-${{ github.sha }}
34-
restore-keys: |
35-
turbo-
36-
3729
- name: Create Release Pull Request or Publish to npm
3830
id: changesets
3931
uses: changesets/action@v1

.github/workflows/tests.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,6 @@ jobs:
2727
- name: Install dependencies
2828
run: pnpm install --no-frozen-lockfile --ignore-scripts
2929

30-
- name: Cache turbo build setup
31-
uses: actions/cache@v4
32-
with:
33-
path: node_modules/.cache/turbo
34-
key: turbo-${{ github.sha }}
35-
restore-keys: |
36-
turbo-
37-
3830
- name: Install Playwright browser and dependencies
3931
run: pnpm exec playwright install --with-deps chromium
4032

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ lerna-debug.log
1717
.env.test.local
1818
.env.production.local
1919

20-
# turbo
21-
.turbo
22-
2320
# solid
2421
.solid
2522

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# Solid Developer Tools
66

77
[![pnpm](https://img.shields.io/badge/maintained%20with-pnpm-cc00ff.svg?style=for-the-badge&logo=pnpm)](https://pnpm.io/)
8-
[![turborepo](https://img.shields.io/badge/built%20with-turborepo-cc00ff.svg?style=for-the-badge&logo=turborepo)](https://turborepo.org/)
98
[![npm](https://img.shields.io/npm/dw/@solid-devtools/shared?color=blue&style=for-the-badge)](https://www.npmjs.com/package/solid-devtools)
109

1110
Library of developer tools, reactivity debugger & Devtools Chrome extension for visualizing SolidJS reactivity graph.

build_shared.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ function is_env_truthy(value: string | undefined): boolean {
1313

1414
export const CI = is_env_truthy(process.env['CI'])
1515
|| is_env_truthy(process.env['GITHUB_ACTIONS'])
16-
|| !!process.env['TURBO_HASH']
1716

1817
// type Worker_Data = {
1918
// is_dev: boolean,

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"build:types": "tsc -b packages/*",
1919
"build": "pnpm build:packages && pnpm build:ext",
2020
"----------------------TEST----------------------": "",
21-
"test:unit": "turbo run test:unit --filter=\"./packages/*\" --filter=\"./extension\"",
21+
"test:unit": "vitest",
2222
"test:types": "pnpm -dir extension run test:types",
2323
"test:lint": "eslint --max-warnings 0",
2424
"test:e2e": "playwright test -c e2e/playwright.config.ts",
@@ -44,7 +44,6 @@
4444
"eslint-plugin-no-only-tests": "^3.3.0",
4545
"jsdom": "^25.0.1",
4646
"solid-js": "^1.9.3",
47-
"turbo": "^1.10.16",
4847
"typescript": "^5.7.2",
4948
"@unocss/core": "0.65.1",
5049
"@unocss/preset-uno": "0.65.1",

packages/debugger/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@
5151
}
5252
}
5353
},
54-
"scripts": {
55-
"test:unit": "vitest"
56-
},
5754
"dependencies": {
5855
"@nothing-but/utils": "~0.17.0",
5956
"@solid-devtools/shared": "workspace:^",

packages/debugger/src/dependency/test/collect.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import '../../setup.ts'
2+
13
import * as s from 'solid-js'
24
import * as test from 'vitest'
35
import {NodeType} from '../../main/constants.ts'

0 commit comments

Comments
 (0)