@dword-design/base-config-nuxt 9.0.6 → 9.0.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 CHANGED
@@ -20,7 +20,7 @@ declare const _default: (this: Base, config: ConfigNuxt) => {
20
20
  };
21
21
  depcheckConfig: {
22
22
  parsers: {
23
- '**/*.scss': (filePath: any) => any;
23
+ '**/*.scss': (filePath: string) => string[];
24
24
  '**/*.vue': any;
25
25
  };
26
26
  specials: ((path: string) => Promise<any[]>)[];
@@ -44,6 +44,10 @@ declare const _default: (this: Base, config: ConfigNuxt) => {
44
44
  declaration: boolean;
45
45
  };
46
46
  extends: string;
47
+ vueCompilerOptions: {
48
+ cssModulesLocalsConvention: string;
49
+ strictCssModules: boolean;
50
+ };
47
51
  };
48
52
  useJobMatrix: boolean;
49
53
  };
package/dist/index.js CHANGED
@@ -78,7 +78,11 @@ export default defineBaseConfig(function (config) {
78
78
  declaration: false
79
79
  // TypeScript errors that declaration cannot be generated for private router types. Comes from the Nuxt-generated TypeScript config.
80
80
  },
81
- extends: "./.nuxt/tsconfig.json"
81
+ extends: "./.nuxt/tsconfig.json",
82
+ vueCompilerOptions: {
83
+ cssModulesLocalsConvention: "camelCaseOnly",
84
+ strictCssModules: true
85
+ }
82
86
  },
83
87
  useJobMatrix: true
84
88
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-nuxt",
3
- "version": "9.0.6",
3
+ "version": "9.0.8",
4
4
  "repository": "dword-design/base-config-nuxt",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@babel/core": "^7.28.5",
35
35
  "@dword-design/base": "^16.1.0",
36
- "@dword-design/depcheck-parser-sass": "^5.0.0",
36
+ "@dword-design/depcheck-parser-sass": "^6.0.0",
37
37
  "@dword-design/dotenv-json-extended": "^4.0.1",
38
38
  "@dword-design/nuxt-page-title": "^1.0.0",
39
39
  "@dword-design/stylelint-config": "^4.1.0",