@bootstrap-vue-next/nuxt 0.42.0 → 0.43.1
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.json +4 -5
- package/dist/module.mjs +5 -6
- package/package.json +18 -18
package/dist/module.json
CHANGED
|
@@ -2,12 +2,11 @@
|
|
|
2
2
|
"name": "bootstrap-vue-next",
|
|
3
3
|
"configKey": "bootstrapVueNext",
|
|
4
4
|
"compatibility": {
|
|
5
|
-
"nuxt": ">=3.0.0"
|
|
6
|
-
"bridge": false
|
|
5
|
+
"nuxt": ">=3.0.0"
|
|
7
6
|
},
|
|
8
|
-
"version": "0.
|
|
7
|
+
"version": "0.43.1",
|
|
9
8
|
"builder": {
|
|
10
|
-
"@nuxt/module-builder": "1.0.
|
|
11
|
-
"unbuild": "3.
|
|
9
|
+
"@nuxt/module-builder": "1.0.2",
|
|
10
|
+
"unbuild": "3.6.1"
|
|
12
11
|
}
|
|
13
12
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -27,13 +27,12 @@ const normalizeConfigurationValue = (option) => {
|
|
|
27
27
|
return typeof option === "boolean" ? { all: option } : option;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
const module = defineNuxtModule({
|
|
30
|
+
const module$1 = defineNuxtModule({
|
|
31
31
|
meta: {
|
|
32
32
|
name: "bootstrap-vue-next",
|
|
33
33
|
configKey: "bootstrapVueNext",
|
|
34
34
|
compatibility: {
|
|
35
|
-
nuxt: ">=3.0.0"
|
|
36
|
-
bridge: false
|
|
35
|
+
nuxt: ">=3.0.0"
|
|
37
36
|
}
|
|
38
37
|
},
|
|
39
38
|
defaults: {
|
|
@@ -54,9 +53,9 @@ const module = defineNuxtModule({
|
|
|
54
53
|
nuxt.options.vite.optimizeDeps.include = nuxt.options.vite.optimizeDeps.include || [];
|
|
55
54
|
nuxt.options.vite.optimizeDeps.include.push("bootstrap-vue-next");
|
|
56
55
|
addPlugin(resolve("./runtime/createBootstrap"));
|
|
57
|
-
const transformAssetUrls =
|
|
56
|
+
const transformAssetUrls = {
|
|
58
57
|
BImg: ["src"]
|
|
59
|
-
}
|
|
58
|
+
};
|
|
60
59
|
nuxt.options.vite.vue = nuxt.options.vite.vue || {};
|
|
61
60
|
nuxt.options.vite.vue.template = nuxt.options.vite.vue.template || {};
|
|
62
61
|
nuxt.options.vite.vue.template.transformAssetUrls = nuxt.options.vite.vue.template.transformAssetUrls ?? {};
|
|
@@ -87,4 +86,4 @@ const module = defineNuxtModule({
|
|
|
87
86
|
}
|
|
88
87
|
});
|
|
89
88
|
|
|
90
|
-
export { module as default };
|
|
89
|
+
export { module$1 as default };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootstrap-vue-next/nuxt",
|
|
3
3
|
"description": "Nuxt Module for BootstrapVueNext",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.43.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Issayah",
|
|
@@ -19,29 +19,29 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"bootstrap-vue-next": "^0.
|
|
22
|
+
"bootstrap-vue-next": "^0.43.1"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@nuxt/kit": "^3.
|
|
25
|
+
"@nuxt/kit": "^3.20.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@nuxt/devtools": "^
|
|
29
|
-
"@nuxt/eslint-config": "^1.
|
|
30
|
-
"@nuxt/module-builder": "^1.0.
|
|
31
|
-
"@nuxt/schema": "^
|
|
32
|
-
"@nuxt/test-utils": "^3.
|
|
33
|
-
"@rushstack/eslint-patch": "^1.
|
|
34
|
-
"@types/node": "^
|
|
28
|
+
"@nuxt/devtools": "^3.1.1",
|
|
29
|
+
"@nuxt/eslint-config": "^1.12.1",
|
|
30
|
+
"@nuxt/module-builder": "^1.0.2",
|
|
31
|
+
"@nuxt/schema": "^4.2.2",
|
|
32
|
+
"@nuxt/test-utils": "^3.23.0",
|
|
33
|
+
"@rushstack/eslint-patch": "^1.15.0",
|
|
34
|
+
"@types/node": "^24.0.0",
|
|
35
35
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
36
|
-
"eslint": "^9.
|
|
36
|
+
"eslint": "^9.39.2",
|
|
37
37
|
"eslint-define-config": "^2.1.0",
|
|
38
|
-
"nuxt": "^
|
|
39
|
-
"prettier": "^3.
|
|
40
|
-
"publint": "^0.3.
|
|
41
|
-
"typescript": "
|
|
42
|
-
"unimport": "^5.
|
|
43
|
-
"vue": "^3.5.
|
|
44
|
-
"bootstrap-vue-next": "^0.
|
|
38
|
+
"nuxt": "^4.2.2",
|
|
39
|
+
"prettier": "^3.8.0",
|
|
40
|
+
"publint": "^0.3.16",
|
|
41
|
+
"typescript": "^5.9.3",
|
|
42
|
+
"unimport": "^5.6.0",
|
|
43
|
+
"vue": "^3.5.27",
|
|
44
|
+
"bootstrap-vue-next": "^0.43.1"
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
47
47
|
"type": "git",
|