@vizejs/nuxt 0.240.0 → 0.242.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -2
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { defineNuxtModule } from "@nuxt/kit";
|
|
2
2
|
import { MuseaOptions, MuseaOptions as MuseaOptions$1 } from "@vizejs/vite-plugin-musea";
|
|
3
3
|
|
|
4
4
|
//#region src/compiler-options.d.ts
|
|
@@ -239,6 +239,6 @@ interface VizeNuxtOptions {
|
|
|
239
239
|
}
|
|
240
240
|
//#endregion
|
|
241
241
|
//#region src/index.d.ts
|
|
242
|
-
declare const _default:
|
|
242
|
+
declare const _default: ReturnType<typeof defineNuxtModule<VizeNuxtOptions>>;
|
|
243
243
|
//#endregion
|
|
244
244
|
export { type MuseaOptions, type NuxtMuseaOptions, type VizeNuxtBridgeOptions, type VizeNuxtCompatibilityOptions, type VizeNuxtCompilerCompatibilityOptions, type VizeNuxtCompilerOptions, type VizeNuxtDevOptions, type VizeNuxtMajorVersion, type VizeNuxtOptions, type VizeNuxtUnoCssOptions, type VizeNuxtVueVersion, _default as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizejs/nuxt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.242.0",
|
|
4
4
|
"description": "Nuxt module for Vize - compiler, musea gallery, linter, and type checker",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compiler",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@nuxt/kit": "
|
|
45
|
-
"@vizejs/vite-plugin": "0.
|
|
46
|
-
"@vizejs/vite-plugin-musea": "0.
|
|
47
|
-
"vize": "0.
|
|
44
|
+
"@nuxt/kit": "3.11.2",
|
|
45
|
+
"@vizejs/vite-plugin": "0.242.0",
|
|
46
|
+
"@vizejs/vite-plugin-musea": "0.242.0",
|
|
47
|
+
"vize": "0.242.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"typescript": "6.0.3",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "vp pack",
|
|
65
65
|
"dev": "vp pack --watch",
|
|
66
|
-
"test": "node --test src/*.test.ts src/**/*.test.ts",
|
|
66
|
+
"test": "pnpm build && node --test src/*.test.ts src/**/*.test.ts",
|
|
67
67
|
"check": "vp check src vite.config.ts",
|
|
68
68
|
"check:fix": "vp check --fix src vite.config.ts",
|
|
69
69
|
"fmt": "vp fmt --write src vite.config.ts"
|