-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy path.npmignore
More file actions
56 lines (48 loc) · 902 Bytes
/
.npmignore
File metadata and controls
56 lines (48 loc) · 902 Bytes
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
# .npmignore
# This file controls what gets published to npm
# It overrides .gitignore for npm publishing
# Exclude development and test files
/.bundle
/pkg
/spec
/test
/gemfiles
/.github
/.circleci
/.husky
/.byebug_history
.DS_Store
yarn-debug.log*
yarn-error.log*
.yarn-integrity
.yalc
yalc.lock
.yalcignore
# Exclude Ruby files not needed for npm package
Gemfile
Gemfile.lock
Rakefile
*.gemspec
.rubocop.yml
.ruby-version
# Exclude TypeScript config
tsconfig.json
# Exclude source maps (optional - remove these lines to include source maps)
*.js.map
*.d.ts.map
# Exclude git and editor files
.git
.gitignore
.gitattributes
.editorconfig
.vscode
.idea
# Exclude CI/CD files
.travis.yml
appveyor.yml
# Exclude documentation source files (keep compiled docs if any)
docs/
# CRITICAL: Exclude TypeScript source files (must be at the end)
# Only include compiled .js and .d.ts files
*.ts
!*.d.ts