@dword-design/base-config-nuxt 8.1.6 → 8.1.8
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.ts +0 -1
- package/dist/index.js +1 -3
- package/package.json +20 -21
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ const resolver = createRequire(import.meta.url);
|
|
|
23
23
|
const isInNodeModules = __dirname.split(pathLib.sep).includes("node_modules");
|
|
24
24
|
export default defineBaseConfig(function (config) {
|
|
25
25
|
return {
|
|
26
|
-
allowedMatches: [".stylelintignore", ".stylelintrc.json", "server/api/**/*.ts", "server/plugins/**/*.ts", "server/routes/**/*.ts", "server/middleware/**/*.ts", "server/utils/**/*.ts", "app.vue", "assets", "components", "composables", "content", "i18n", "layouts", "middleware", "model", "modules", "config.ts", "pages", "plugins", "public", "shared", "
|
|
26
|
+
allowedMatches: [".stylelintignore", ".stylelintrc.json", "server/api/**/*.ts", "server/plugins/**/*.ts", "server/routes/**/*.ts", "server/middleware/**/*.ts", "server/utils/**/*.ts", "app.vue", "assets", "components/**/*.vue", "composables/*.ts", "content", "i18n/*/*.ts", "layouts/*.vue", "middleware/*.ts", "model", "modules", "config.ts", "pages/*.vue", "plugins/*.ts", "public", "shared/utils/*.ts", "shared/types/*.ts", "utils/*.ts"],
|
|
27
27
|
commands: {
|
|
28
28
|
analyze,
|
|
29
29
|
build,
|
|
@@ -43,7 +43,6 @@ export default defineBaseConfig(function (config) {
|
|
|
43
43
|
editorIgnore: [".eslintcache", ".stylelintcache", ".stylelintignore", ".stylelintrc.json", ".nuxt", ".output", "dist", "nuxt.config.ts"],
|
|
44
44
|
eslintConfig: getEslintConfig(pick(config, ["virtualImports"])),
|
|
45
45
|
gitignore: ["/.eslintcache", "/.nuxt", "/.output", "/.stylelintcache", "/dist", "/nuxt.config.ts"],
|
|
46
|
-
hasTypeModule: false,
|
|
47
46
|
hasTypescriptConfigRootAlias: false,
|
|
48
47
|
lint,
|
|
49
48
|
lintStagedConfig: {
|
|
@@ -53,7 +52,6 @@ export default defineBaseConfig(function (config) {
|
|
|
53
52
|
packageConfig: {
|
|
54
53
|
main: "dist/index.js"
|
|
55
54
|
},
|
|
56
|
-
// TODO: Remove this when https://github.com/nuxt/nuxt/issues/33733 is fixed
|
|
57
55
|
prepare: async () => {
|
|
58
56
|
const configPath = isInNodeModules ? "@dword-design/base-config-nuxt/config" : `./${pathLib.relative(this.cwd, resolver.resolve("./config").slice(0, -".ts".length)).split(pathLib.sep).join("/")}`;
|
|
59
57
|
const parentConfigPath = isInNodeModules ? "@dword-design/base-config-nuxt/nuxt.config" : `./${pathLib.relative(this.cwd, resolver.resolve("./nuxt.config").slice(0, -".ts".length)).split(pathLib.sep).join("/")}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dword-design/base-config-nuxt",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.8",
|
|
4
4
|
"repository": "dword-design/base-config-nuxt",
|
|
5
5
|
"funding": "https://github.com/sponsors/dword-design",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,22 +24,21 @@
|
|
|
24
24
|
"depcheck": "base depcheck",
|
|
25
25
|
"dev": "base dev",
|
|
26
26
|
"lint": "base lint",
|
|
27
|
-
"prepare": "base prepare",
|
|
28
27
|
"prepublishOnly": "base prepublishOnly",
|
|
29
28
|
"test": "base test",
|
|
30
29
|
"typecheck": "base typecheck",
|
|
31
30
|
"verify": "base verify"
|
|
32
31
|
},
|
|
33
32
|
"dependencies": {
|
|
34
|
-
"@babel/core": "^7.28.
|
|
35
|
-
"@dword-design/base": "^
|
|
33
|
+
"@babel/core": "^7.28.5",
|
|
34
|
+
"@dword-design/base": "^16.0.4",
|
|
36
35
|
"@dword-design/depcheck-parser-sass": "^5.0.0",
|
|
37
36
|
"@dword-design/dotenv-json-extended": "^4.0.1",
|
|
38
37
|
"@dword-design/nuxt-i18n": "^1.0.1",
|
|
39
38
|
"@dword-design/nuxt-page-title": "^1.0.0",
|
|
40
39
|
"@dword-design/stylelint-config": "^4.1.0",
|
|
41
|
-
"@nuxt/eslint": "^1.
|
|
42
|
-
"@nuxt/kit": "^4.
|
|
40
|
+
"@nuxt/eslint": "^1.10.0",
|
|
41
|
+
"@nuxt/kit": "^4.2.1",
|
|
43
42
|
"@nuxtjs/stylelint-module": "^5.2.1",
|
|
44
43
|
"babel-plugin-add-import-extension": "^1.6.0",
|
|
45
44
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
@@ -47,43 +46,43 @@
|
|
|
47
46
|
"depcheck-package-name": "^4.0.1",
|
|
48
47
|
"endent": "npm:@dword-design/endent@^1.4.7",
|
|
49
48
|
"execa": "^9.6.0",
|
|
50
|
-
"fs-extra": "^11.3.
|
|
51
|
-
"globby": "^
|
|
52
|
-
"jiti": "^2.
|
|
49
|
+
"fs-extra": "^11.3.2",
|
|
50
|
+
"globby": "^16.0.0",
|
|
51
|
+
"jiti": "^2.6.1",
|
|
53
52
|
"lodash-es": "^4.17.21",
|
|
54
|
-
"nuxt": "^3.
|
|
53
|
+
"nuxt": "^3.20.1",
|
|
55
54
|
"nuxt-basic-authentication-module": "^0.2.1",
|
|
56
55
|
"output-files": "^3.0.0",
|
|
57
56
|
"require-package-name": "^2.0.1",
|
|
58
|
-
"sass": "^1.
|
|
59
|
-
"stylelint": "^16.
|
|
60
|
-
"typescript": "^5.9.
|
|
57
|
+
"sass": "^1.94.2",
|
|
58
|
+
"stylelint": "^16.26.0",
|
|
59
|
+
"typescript": "^5.9.3",
|
|
61
60
|
"vite-plugin-eslint2": "^5.0.4",
|
|
62
61
|
"vite-svg-loader": "^5.1.0"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
64
|
"@dword-design/defu": "^1.0.3",
|
|
66
|
-
"@nuxtjs/sitemap": "^7.4.
|
|
65
|
+
"@nuxtjs/sitemap": "^7.4.7",
|
|
67
66
|
"@nuxtjs/tailwindcss": "7.0.0-beta.0",
|
|
68
|
-
"@playwright/browser-chromium": "^1.
|
|
69
|
-
"@playwright/test": "^1.
|
|
67
|
+
"@playwright/browser-chromium": "^1.56.1",
|
|
68
|
+
"@playwright/test": "^1.56.1",
|
|
70
69
|
"@types/babel__core": "^7.20.5",
|
|
71
70
|
"@types/fs-extra": "^11.0.4",
|
|
72
71
|
"@types/lodash-es": "^4.17.12",
|
|
73
|
-
"axios": "^1.
|
|
74
|
-
"delay": "^
|
|
72
|
+
"axios": "^1.13.2",
|
|
73
|
+
"delay": "^7.0.0",
|
|
75
74
|
"get-port": "^7.1.0",
|
|
76
75
|
"nuxt-dev-ready": "^5.0.1",
|
|
77
76
|
"port-ready": "^0.1.0",
|
|
78
77
|
"tree-kill-promise": "^4.0.0",
|
|
79
|
-
"xml-formatter": "^3.6.
|
|
78
|
+
"xml-formatter": "^3.6.7"
|
|
80
79
|
},
|
|
81
80
|
"peerDependencies": {
|
|
82
81
|
"depcheck": "*"
|
|
83
82
|
},
|
|
84
|
-
"packageManager": "pnpm@10.
|
|
83
|
+
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
|
|
85
84
|
"engines": {
|
|
86
|
-
"node": ">=
|
|
85
|
+
"node": ">=22"
|
|
87
86
|
},
|
|
88
87
|
"publishConfig": {
|
|
89
88
|
"access": "public"
|