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 +1 -1
- package/configs/dockerignore +54 -52
- package/configs/gitignore +1 -0
- package/package.json +1 -1
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
|
-
|
|
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.
|
package/configs/dockerignore
CHANGED
|
@@ -1,81 +1,83 @@
|
|
|
1
1
|
# System
|
|
2
|
-
Thumbs.db
|
|
3
|
-
|
|
2
|
+
**/Thumbs.db
|
|
3
|
+
**/.DS_Store
|
|
4
4
|
|
|
5
5
|
# Editors
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
**/.idea
|
|
7
|
+
**/.vscode
|
|
8
|
+
**/.zed
|
|
8
9
|
|
|
9
10
|
# Agents
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
|
|
32
|
+
**/*.tsbuildinfo
|
|
32
33
|
|
|
33
34
|
# Caches
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
**/.cache
|
|
36
|
+
**/.parcel-cache
|
|
37
|
+
**/.turbo
|
|
38
|
+
**/.vite
|
|
38
39
|
|
|
39
40
|
# Frameworks
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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
|
-
|
|
52
|
-
|
|
52
|
+
**/.netlify
|
|
53
|
+
**/.vercel
|
|
53
54
|
|
|
54
55
|
# Output
|
|
55
|
-
dist
|
|
56
|
-
coverage
|
|
56
|
+
**/dist
|
|
57
|
+
**/coverage
|
|
57
58
|
|
|
58
59
|
# Git
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
**/.git
|
|
61
|
+
**/.github
|
|
62
|
+
**/.gitignore
|
|
61
63
|
|
|
62
64
|
# Docker
|
|
63
|
-
Dockerfile*
|
|
64
|
-
|
|
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
|
-
|
|
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
package/package.json
CHANGED