kvalita 1.17.0 → 1.17.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/README.md CHANGED
@@ -82,4 +82,4 @@ cp node_modules/kvalita/configs/gitignore .gitignore
82
82
  cp node_modules/kvalita/configs/dockerignore .dockerignore
83
83
  ```
84
84
 
85
- In a monorepo, prefix the Docker entries with `**/`. Docker matches patterns from the build context root, not at any depth like git.
85
+ The Docker entries carry a `**/` prefix because Docker matches from the build context root, not at any depth like git. `**` also matches zero directories, so the one spelling works in a flat project and a monorepo alike.
@@ -1,81 +1,83 @@
1
1
  # System
2
- Thumbs.db
3
- .DS_Store
2
+ **/Thumbs.db
3
+ **/.DS_Store
4
4
 
5
5
  # Editors
6
- .idea
7
- .vscode
6
+ **/.idea
7
+ **/.vscode
8
+ **/.zed
8
9
 
9
10
  # Agents
10
- .aider*
11
- .claude
12
- .codex
13
- .continue
14
- .cursor
15
- .gemini
16
- .junie
17
- .opencode
18
- .windsurf
11
+ **/.aider*
12
+ **/.claude
13
+ **/.codex
14
+ **/.continue
15
+ **/.cursor
16
+ **/.gemini
17
+ **/.junie
18
+ **/.opencode
19
+ **/.windsurf
19
20
 
20
21
  # Dependencies
21
- node_modules
22
- .pnp
23
- .pnp.js
24
- .pnp.cjs
25
- .yarn
26
- .npm
27
- .pnpm-store
28
- .bun
22
+ **/node_modules
23
+ **/.pnp
24
+ **/.pnp.js
25
+ **/.pnp.cjs
26
+ **/.yarn
27
+ **/.npm
28
+ **/.pnpm-store
29
+ **/.bun
29
30
 
30
31
  # Debug
31
- *.tsbuildinfo
32
+ **/*.tsbuildinfo
32
33
 
33
34
  # Caches
34
- .cache
35
- .parcel-cache
36
- .turbo
37
- .vite
35
+ **/.cache
36
+ **/.parcel-cache
37
+ **/.turbo
38
+ **/.vite
38
39
 
39
40
  # Frameworks
40
- .astro
41
- .next
42
- .nuxt
43
- .output
44
- .svelte-kit
41
+ **/.astro
42
+ **/.next
43
+ **/.nuxt
44
+ **/.output
45
+ **/.svelte-kit
45
46
 
46
47
  # Testing
47
- playwright-report
48
- test-results
48
+ **/playwright-report
49
+ **/test-results
49
50
 
50
51
  # Deployment
51
- .netlify
52
- .vercel
52
+ **/.netlify
53
+ **/.vercel
53
54
 
54
55
  # Output
55
- dist
56
- coverage
56
+ **/dist
57
+ **/coverage
57
58
 
58
59
  # Git
59
- .git
60
- .gitignore
60
+ **/.git
61
+ **/.github
62
+ **/.gitignore
61
63
 
62
64
  # Docker
63
- Dockerfile*
64
- .dockerignore
65
- docker-compose*.y*ml
66
- docker-stack*.y*ml
67
- compose*.y*ml
65
+ **/Dockerfile*
66
+ **/.dockerignore
67
+ **/docker-compose*.y*ml
68
+ **/docker-stack*.y*ml
69
+ **/compose*.y*ml
68
70
 
69
71
  # Tooling
70
- .editorconfig
71
- biome.json
72
- lefthook.json
72
+ **/.editorconfig
73
+ **/biome.json
74
+ **/lefthook.json
73
75
 
74
76
  # Docs
75
- README.md
76
- LICENSE
77
+ **/README.md
78
+ **/LICENSE
77
79
 
78
80
  # Working files
79
- _drafts
80
- _files
81
- _plans
81
+ **/_drafts
82
+ **/_files
83
+ **/_plans
package/configs/gitignore CHANGED
@@ -5,6 +5,7 @@ Thumbs.db
5
5
  # Editors
6
6
  .idea
7
7
  .vscode
8
+ .zed
8
9
 
9
10
  # Agents
10
11
  .aider*
package/package.json CHANGED
@@ -41,5 +41,5 @@
41
41
  "semantic-release": "^25.0.9",
42
42
  "typescript": "^7.0.2"
43
43
  },
44
- "version": "1.17.0"
44
+ "version": "1.17.2"
45
45
  }