-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.npmignore
More file actions
68 lines (55 loc) · 1.3 KB
/
.npmignore
File metadata and controls
68 lines (55 loc) · 1.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
# Gatekeeper for `npm pack` / `npm publish` when package.json has no "files" field:
# everything in the package root is included except these patterns.
# If both .npmignore and .gitignore exist, npm uses ONLY .npmignore for packing.
# --- Dependencies & install logs ---
node_modules/
package-lock.json
yarn.lock
yarn-error.log
yarn-debug.log*
npm-debug.log*
# --- Secrets & local env (keep .env.example published) ---
.env
.env*.local
# --- Build outputs & caches ---
dist/
web-build/
releases/
.expo/
.kotlin/
.metro-health-check*
*.tsbuildinfo
# --- Generated pack / local artifacts ---
*.tgz
/*.tgz
# --- Git & CI (not needed in the scaffold tarball) ---
.git/
.github/
# --- Editor, Vercel link state, scratch ---
.vscode/
.cursor/
.tmp/
.vercel/
# --- OS & junk ---
.DS_Store
*.pem
*.orig.*
bash.exe.stackdump
# --- Repo-only scratch (not the npm-facing readme) ---
build_ref.md
app-example
# --- Apple / signing material (never publish) ---
*.jks
*.key
*.mobileprovision
*.p12
*.p8
# --- Local npm auth (tokens); npmrc.example is still published ---
.npmrc
# --- Noise inside bundled docs folder ---
research & docs/debug.log
research & docs/issue.md
# npm omits this file from the tarball by convention
.npmignore
# npm-packlist skips some root dotfiles by default; force-include for the scaffold:
!.gitignore