@naturalcycles/dev-lib 20.0.4 → 20.0.6

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/cfg/biome.jsonc CHANGED
@@ -7,6 +7,7 @@
7
7
  "src/**",
8
8
  "scripts/**",
9
9
  "!**/*.html",
10
+ "!**/*.css",
10
11
  "!**/*.scss",
11
12
  "!**/tsconfig.json",
12
13
  "!**/tsconfig.*.json",
@@ -117,7 +117,7 @@ function getConfig(tsconfigPath) {
117
117
  NodeJS: 'readonly',
118
118
  },
119
119
  parserOptions: {
120
- project: fs.existsSync(tsconfigPath) ? tsconfigPath : undefined,
120
+ project: tsconfigPath,
121
121
  // tsconfigRootDir: cwd,
122
122
  parser: tseslint.parser,
123
123
  extraFileExtensions: ['.vue', '.html'],
@@ -1,5 +1,6 @@
1
1
  export default {
2
2
  extends: ['stylelint-config-standard-scss'],
3
+ ignoreFiles: ['!**/*.{css,scss}'],
3
4
  rules: {
4
5
  'no-empty-source': null,
5
6
  'color-hex-length': 'short',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.0.4",
4
+ "version": "20.0.6",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",