Skip to content

Commit 958bab3

Browse files
serhalpminivanpieh
authored
build: remove nuxt playground typechecking (#367)
There's some intermittent issue in CI that I can't quite figure out: ``` > vue-tsc --noEmit && nuxi prepare playground && cd playground && vue-tsc --noEmit [success] [nuxi] Types generated in playground/.nuxt Error: netlify/edge-functions/geo.ts(1,15): error TS2305: Module '"@netlify/edge-functions"' has no exported member 'Context'. Error: netlify/edge-functions/world-adder.ts(1,15): error TS2305: Module '"@netlify/edge-functions"' has no exported member 'Context'. ``` (example run: https://github.com/netlify/primitives/actions/runs/16378826884/job/46285296127?pr=365) I think it's some issue at the intersection of npm workspaces + a non-workspace `package.json` within a workspace + referencing a dependency that happens to be in this workspace + maybe CI npm caching...? Doesn't seem worth spending more time on to just type-check the nuxt module playground. Co-authored-by: Ivan Zarea <zarea.ivan@gmail.com> Co-authored-by: Michal Piechowiak <misiek.piechowiak@gmail.com>
1 parent 36c8c4b commit 958bab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nuxt-module/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"test": "exit 0",
3535
"test:ci": "vitest run",
3636
"test:dev": "vitest",
37-
"test:types": "vue-tsc --noEmit && nuxi prepare playground && cd playground && vue-tsc --noEmit",
37+
"test:types": "vue-tsc --noEmit",
3838
"test:watch": "vitest watch"
3939
},
4040
"keywords": [

0 commit comments

Comments
 (0)