-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnpmignore
58 lines (47 loc) · 915 Bytes
/
.pnpmignore
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
# .pnpmignore
# This file specifies the files and directories that should be ignored by pnpm
# when publishing the package or when it is included as a dependency in other projects.
# It's similar to .gitignore, but specific to pnpm.
# Ignore node_modules as they should not be published or shared
node_modules/
# Ignore pnpm-specific files
.pnpm/
# Ignore lock files
pnpm-lock.yaml
yarn.lock
package-lock.json
# Ignore build output
dist/
build/
coverage/
# Ignore IDE/editor-specific files
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
# Ignore OS-specific files
.DS_Store
Thumbs.db
# Ignore logs and temporary files
*.log
*.tmp
*.swp
.nyc_output/
# Ignore test files
test/
tests/
__tests__/
__mocks__/
coverage/
# Ignore documentation files that don't need to be included in the package
docs/
*.md
*.markdown
# Ignore sensitive files
.env
.secret
*.key
*.pem
# Ignore script files
scripts/
bin/