Skip to content

Commit 63338c6

Browse files
Merge pull request #209 from TorstenDittmann/remove-turbo
feat: remove turbo
2 parents 97d8afa + 1dc40c8 commit 63338c6

File tree

11 files changed

+6851
-12336
lines changed

11 files changed

+6851
-12336
lines changed

.github/workflows/lint.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ jobs:
1111
with:
1212
node-version: '20.x'
1313
registry-url: 'https://registry.npmjs.org'
14-
- run: npm ci
15-
- run: npm run lint
14+
- run: corepack enable
15+
- run: pnpm install --frozen-lockfile
16+
- run: pnpm run lint

.github/workflows/publish.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
with:
1212
node-version: '20.x'
1313
registry-url: 'https://registry.npmjs.org'
14-
- run: npm ci
15-
- run: npm run publish-packages
14+
- run: corepack enable
15+
- run: pnpm install --frozen-lockfile
16+
- run: pnpm run build && pnpm publish -r
1617
env:
1718
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
uses: actions/setup-node@v4
1616
with:
1717
node-version: ${{ matrix.node-version }}
18-
cache: 'npm'
19-
- run: npm ci
20-
- run: npm run build
21-
- run: npx playwright install --with-deps chromium
22-
- run: npm test
18+
- run: corepack enable
19+
- run: pnpm install --frozen-lockfile
20+
- run: pnpm run build
21+
- run: pnpx playwright install --with-deps chromium
22+
- run: pnpm test

apps/demo/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
"devDependencies": {
1616
"@playwright/test": "^1.28.1",
1717
"@sveltejs/adapter-cloudflare": "^4.4.0",
18-
"@sveltejs/kit": "*",
18+
"@sveltejs/kit": "catalog:default",
1919
"@sveltejs/vite-plugin-svelte": "^3.0.0",
2020
"@typescript-eslint/eslint-plugin": "^7.0.0",
21-
"@typescript-eslint/parser": "*",
21+
"@typescript-eslint/parser": "catalog:default",
2222
"eslint": "^8.53.0",
2323
"eslint-config-prettier": "^9.1.0",
2424
"eslint-plugin-svelte": "^2.35.1",
25-
"prettier": "*",
25+
"prettier": "catalog:default",
2626
"prettier-plugin-svelte": "^3.0.3",
27-
"svelte": "*",
27+
"svelte": "catalog:default",
2828
"svelte-check": "^3.6.2",
29-
"svelte-markdoc-preprocess": "*",
29+
"svelte-markdoc-preprocess": "workspace:*",
3030
"tslib": "^2.4.1",
3131
"typescript": "^5.5.2",
3232
"vite": "^5.0.0"

0 commit comments

Comments
 (0)