-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.npmignore
More file actions
118 lines (108 loc) · 3.3 KB
/
.npmignore
File metadata and controls
118 lines (108 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# .npmignore - Convention-based Packaging (Issue #86)
# Excludes development/test files from npm package
# Working with package.json 'files' array for optimal package size
# =============================================================================
# Test Files and Test Directories
# =============================================================================
tests/
test-*/
**/tests/
**/test_*.py
**/test-*.js
**/*_test.py
**/*.test.js
**/*.spec.js
**/test*.py
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
# =============================================================================
# Development and Build Artifacts
# =============================================================================
*.log
*.pyc
*.pyo
*.pyd
**/__pycache__/
**/*.pyc
.env
.env.*
!.env.example
**/venv/
**/.venv/
**/env/
build/
dist/
*.egg-info/
*.egg
*.whl
# =============================================================================
# CI/CD and Automation
# =============================================================================
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
.azure-pipelines.yml
# =============================================================================
# Development Directories (not needed in package)
# =============================================================================
archived/
data/
docs/
qdrant_storage/
# Note: config/ NOT excluded - qdrant-config.yaml is needed in package
# =============================================================================
# Version Control
# =============================================================================
.git/
.gitignore
.gitattributes
# =============================================================================
# IDE and Editor Files
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
# =============================================================================
# OS Files
# =============================================================================
.DS_Store
Thumbs.db
desktop.ini
# =============================================================================
# Node/npm
# =============================================================================
node_modules/
package-lock.json
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# =============================================================================
# Development Scripts (not needed in production)
# =============================================================================
scripts/publish-npm.sh
scripts/test-*.py
scripts/fixes/
scripts/setup/
scripts/quality-gate-staged.py
scripts/ast_grep_final_analyzer.py
scripts/ast_grep_unified_registry.py
scripts/update_patterns.py
scripts/backup-qdrant.py
scripts/migrate-*.py
scripts/add-timestamp-indexes.py
scripts/check-collections.py
scripts/validate-package-imports.py
# =============================================================================
# Notes for Maintainers
# =============================================================================
# - Docker files (docker-compose.yaml, Dockerfile.*) are INCLUDED via package.json
# - Essential scripts are INCLUDED via package.json files array patterns
# - This file works WITH package.json, not instead of it
# - When adding new dev-only files, add patterns here
# - When adding new production files, add to package.json 'files' array