Skip to content

Commit ecf2c3f

Browse files
committed
ci: fix nuxt module build
1 parent c3aa323 commit ecf2c3f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ jobs:
7878
run: pnpm run build
7979

8080
- name: Nuxt module build
81-
# Skip this as it fails on ci but not locally...
82-
if: false
8381
working-directory: ./packages/nuxt
8482
run: pnpm run build
8583

packages/nuxt/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"require": "./dist/module.cjs"
1212
},
1313
"./templates/*": "./templates/*",
14-
"./runtime": {
15-
"types": "./dist/runtime/index.d.ts",
16-
"import": "./dist/runtime/index.mjs"
14+
"./runtime/*": {
15+
"types": "./dist/runtime/*",
16+
"import": "./dist/runtime/*"
1717
}
1818
},
1919
"main": "./dist/module.cjs",

0 commit comments

Comments
 (0)