contents-popup-redtombo 1.4.4 → 1.4.5
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/module.cjs
CHANGED
|
@@ -11,7 +11,7 @@ const module$1 = kit.defineNuxtModule({
|
|
|
11
11
|
setup(_options, _nuxt) {
|
|
12
12
|
const { resolve } = kit.createResolver((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('module.cjs', document.baseURI).href)));
|
|
13
13
|
kit.addComponentsDir({
|
|
14
|
-
path: resolve("./components"),
|
|
14
|
+
path: resolve("./runtime/components"),
|
|
15
15
|
pathPrefix: false
|
|
16
16
|
});
|
|
17
17
|
kit.addImportsDir(resolve("./composables"));
|
package/dist/module.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const module = defineNuxtModule({
|
|
|
8
8
|
setup(_options, _nuxt) {
|
|
9
9
|
const { resolve } = createResolver(import.meta.url);
|
|
10
10
|
addComponentsDir({
|
|
11
|
-
path: resolve("./components"),
|
|
11
|
+
path: resolve("./runtime/components"),
|
|
12
12
|
pathPrefix: false
|
|
13
13
|
});
|
|
14
14
|
addImportsDir(resolve("./composables"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contents-popup-redtombo",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "ポップアップの中のComponentsを動的に切り替えることができるポップアップ",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.cjs",
|
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"CHANGELOG.md"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"dev": "
|
|
24
|
-
"preview": "nuxt preview",
|
|
23
|
+
"dev": "nuxi dev",
|
|
25
24
|
"build": "unbuild",
|
|
26
25
|
"prepack": "npm run build"
|
|
27
26
|
},
|
|
@@ -32,6 +31,7 @@
|
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"@nuxt/cli": "^3.29.3",
|
|
34
33
|
"@types/node": "^24.9.2",
|
|
34
|
+
"nuxi": "^3.30.0",
|
|
35
35
|
"nuxt": "^4.2.0",
|
|
36
36
|
"typescript": "^5.9.3",
|
|
37
37
|
"unbuild": "^2.0.0"
|