Skip to content

Commit 0f1cf63

Browse files
committed
fix: restore internal package scopes and fix workflow configurations
1 parent f060a94 commit 0f1cf63

11 files changed

Lines changed: 15 additions & 25 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Clean up
4040
run: |
41-
rm -rf node_modules package-lock.json || true
41+
rm -rf node_modules || true
4242
npm cache clean --force || true
4343
4444
- name: Install dependencies

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,10 @@ jobs:
3434
- name: Install node modules
3535
run: npm install --no-audit --no-fund --progress=false
3636
- name: Presubmit check (e.g. lint, format)
37-
# do not run this on Windows (it fails and not necessary)
38-
# Only run on shard 1 to avoid redundant execution
39-
if: contains(matrix.os.name, 'macos') && matrix.shard == 1
4037
run: npm run presubmit
4138
- name: Type-checking
42-
# do not run this on windows (it's redunant)
43-
# Only run on shard 1 to avoid redundant execution
44-
if: contains(matrix.os.name, 'macos') && matrix.shard == 1
4539
run: npm run ts
4640
- name: Unit tests
47-
# do not run this on windows (it's redunant)
48-
# Only run on shard 1 to avoid redundant execution
49-
if: contains(matrix.os.name, 'macos') && matrix.shard == 1
5041
run: npm run test
5142
- name: Setup pnpm
5243
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
- name: Clean up
3939
run: |
4040
rm -rf node_modules
41-
rm -f package-lock.json
4241
npm cache clean --force
4342
shell: bash
4443
- run: npm ci --include=optional || npm install --include=optional

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"@ai-sdk/provider-utils": "^3.0.3",
9696
"@ai-sdk/xai": "^2.0.16",
9797
"@biomejs/biome": "^1.9.4",
98-
"@alifullstack-sh/supabase-management-js": "1.0.0",
98+
"@dyad-sh/supabase-management-js": "1.0.0",
9999
"@lexical/react": "^0.33.1",
100100
"@monaco-editor/react": "^4.7.0-rc.0",
101101
"@neondatabase/api-client": "^2.1.0",

scaffold-3d/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"three": "^0.158.0"
7272
},
7373
"devDependencies": {
74-
"@alifullstack-sh/react-vite-component-tagger": "^0.8.0",
74+
"@dyad-sh/react-vite-component-tagger": "^0.8.0",
7575
"@eslint/js": "^9.9.0",
7676
"@tailwindcss/typography": "^0.5.15",
7777
"@types/leaflet": "^1.9.12",

scaffold-3d/pnpm-lock.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scaffold/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scaffold/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"zod": "^3.23.8"
7070
},
7171
"devDependencies": {
72-
"@alifullstack-sh/react-vite-component-tagger": "^0.8.0",
72+
"@dyad-sh/react-vite-component-tagger": "^0.8.0",
7373
"@eslint/js": "^9.9.0",
7474
"@tailwindcss/typography": "^0.5.15",
7575
"@types/leaflet": "^1.9.12",

scaffold/pnpm-lock.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ipc/handlers/createFromTemplate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ export async function createFromTemplate({
10581058
"zod": "^3.23.8"
10591059
},
10601060
"devDependencies": {
1061-
"@alifullstack-sh/react-vite-component-tagger": "^0.8.0",
1061+
"@dyad-sh/react-vite-component-tagger": "^0.8.0",
10621062
"@eslint/js": "^9.9.0",
10631063
"@tailwindcss/typography": "^0.5.15",
10641064
"@types/node": "^22.5.5",

0 commit comments

Comments
 (0)