@bootstrap-vue-next/nuxt 0.1.0 → 0.1.2
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 +1 -1
- package/dist/module.mjs +3 -1
- package/package.json +21 -15
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,7 +14,9 @@ const useComponents = () => {
|
|
|
14
14
|
const parseActiveImports = (options, values) => {
|
|
15
15
|
const { all, ...others } = options;
|
|
16
16
|
const valuesCopy = { ...values };
|
|
17
|
-
Object.keys(valuesCopy).forEach((el) =>
|
|
17
|
+
Object.keys(valuesCopy).forEach((el) => {
|
|
18
|
+
valuesCopy[el] = all;
|
|
19
|
+
});
|
|
18
20
|
const merge = { ...valuesCopy, ...others };
|
|
19
21
|
return Object.entries(merge).filter(([, value]) => value === true).map(([name]) => name);
|
|
20
22
|
};
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootstrap-vue-next/nuxt",
|
|
3
3
|
"description": "Nuxt Module for BootstrapVueNext",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Issayah",
|
|
8
8
|
"url": "https://github.com/VividLemon"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
+
"main": "./dist/module.cjs",
|
|
11
12
|
"exports": {
|
|
12
13
|
".": {
|
|
13
14
|
"types": "./dist/types.d.ts",
|
|
@@ -15,38 +16,42 @@
|
|
|
15
16
|
"require": "./dist/module.cjs"
|
|
16
17
|
}
|
|
17
18
|
},
|
|
18
|
-
"main": "./dist/module.cjs",
|
|
19
|
-
"types": "./dist/types.d.ts",
|
|
20
19
|
"files": [
|
|
21
20
|
"dist"
|
|
22
21
|
],
|
|
22
|
+
"types": "./dist/types.d.ts",
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"bootstrap-vue-next": "^0.9.
|
|
24
|
+
"bootstrap-vue-next": "^0.9.12"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nuxt/kit": "
|
|
27
|
+
"@nuxt/kit": "~3.5.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@nuxt/eslint-config": "^0.1.1",
|
|
31
|
-
"@nuxt/module-builder": "^0.
|
|
32
|
-
"@nuxt/schema": "
|
|
33
|
-
"@rushstack/eslint-patch": "^1.2
|
|
31
|
+
"@nuxt/module-builder": "^0.4.0",
|
|
32
|
+
"@nuxt/schema": "~3.5.2",
|
|
33
|
+
"@rushstack/eslint-patch": "^1.3.2",
|
|
34
34
|
"@vue/eslint-config-prettier": "^7.1.0",
|
|
35
|
-
"eslint": "^8.
|
|
36
|
-
"eslint-define-config": "^1.
|
|
37
|
-
"nuxt": "
|
|
35
|
+
"eslint": "^8.43.0",
|
|
36
|
+
"eslint-define-config": "^1.21.0",
|
|
37
|
+
"nuxt": "~3.5.2",
|
|
38
38
|
"prettier": "^2.8.8",
|
|
39
|
-
"unimport": "^3.0.
|
|
39
|
+
"unimport": "^3.0.8",
|
|
40
40
|
"vue": "^3.3.4",
|
|
41
|
-
"bootstrap-vue-next": "^0.9.
|
|
41
|
+
"bootstrap-vue-next": "^0.9.12"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
|
-
"type": "
|
|
45
|
-
"url": "https://github.com/bootstrap-vue-next/bootstrap-vue-next
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/bootstrap-vue-next/bootstrap-vue-next.git",
|
|
46
|
+
"directory": "packages/nuxt"
|
|
46
47
|
},
|
|
47
48
|
"bugs": {
|
|
48
49
|
"url": "https://github.com/bootstrap-vue-next/bootstrap-vue-next/issues"
|
|
49
50
|
},
|
|
51
|
+
"funding": {
|
|
52
|
+
"type": "opencollective",
|
|
53
|
+
"url": "https://opencollective.com/bootstrap-vue-next"
|
|
54
|
+
},
|
|
50
55
|
"homepage": "https://github.com/bootstrap-vue-next/bootstrap-vue-next",
|
|
51
56
|
"keywords": [
|
|
52
57
|
"vue3",
|
|
@@ -63,6 +68,7 @@
|
|
|
63
68
|
"scripts": {
|
|
64
69
|
"dev": "nuxi dev playground --port 3030",
|
|
65
70
|
"build": "pnpm run dev:build && pnpm run prepack",
|
|
71
|
+
"build-emit": "pnpm run build",
|
|
66
72
|
"dev:build": "nuxi build playground",
|
|
67
73
|
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|
|
68
74
|
"lint": "eslint --ext .js,.ts,.vue --ignore-path ../../.gitignore --fix",
|