Skip to content

Commit f8e55a3

Browse files
committed
chore: update type import
1 parent e4e5db7 commit f8e55a3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"validator.d.ts"
2828
],
2929
"scripts": {
30-
"prepack": "nuxt-module-build",
30+
"prepack": "nuxt-module-build build",
3131
"dev": "nuxi dev playground",
3232
"dev:build": "nuxi build playground",
33-
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
33+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
3434
"lint": "eslint --ext .js,.ts,.vue",
3535
"lint:all": "pnpm lint .",
3636
"release": "pnpm test && bumpp && npm publish",

src/module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { normalize } from 'pathe'
44
import { isWindows } from 'std-env'
55

66
import { createResolver, defineNuxtModule, isNuxt2, logger, resolvePath } from '@nuxt/kit'
7-
import { DEFAULTS, ModuleOptions } from './config'
7+
import { DEFAULTS } from './config'
8+
import type { ModuleOptions } from './config'
89

910
export type { ModuleOptions }
1011

0 commit comments

Comments
 (0)