spoko-design-system 1.1.7 → 1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.1.8](https://github.com/polo-blue/sds/compare/v1.1.7...v1.1.8) (2025-09-23)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update ESLint configuration to properly parse Vue files ([0eb941a](https://github.com/polo-blue/sds/commit/0eb941a37002c80753f1324c30873888cfe62f70))
6
+
1
7
  ## [1.1.7](https://github.com/polo-blue/sds/compare/v1.1.6...v1.1.7) (2025-09-23)
2
8
 
3
9
  ### Bug Fixes
package/eslint.config.js CHANGED
@@ -28,21 +28,17 @@ export default [
28
28
  },
29
29
 
30
30
  // Vue files
31
+ ...vue.configs['flat/recommended'],
31
32
  {
32
33
  files: ['**/*.vue'],
33
34
  languageOptions: {
34
- parser: vue.parser,
35
35
  parserOptions: {
36
36
  parser: typescriptParser,
37
37
  ecmaVersion: 'latest',
38
38
  sourceType: 'module',
39
39
  },
40
40
  },
41
- plugins: {
42
- vue,
43
- },
44
41
  rules: {
45
- ...vue.configs.recommended.rules,
46
42
  'vue/multi-word-component-names': 'off',
47
43
  'vue/no-unused-vars': 'warn',
48
44
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoko-design-system",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "private": false,
5
5
  "main": "./index.ts",
6
6
  "module": "./index.ts",