Skip to content

Commit 5062d41

Browse files
committed
npm package
1 parent af5e70d commit 5062d41

11 files changed

+3637
-0
lines changed

Diff for: js/.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log
4+
yarn-error.log
5+
.parcel-cache
6+
7+
# Logs
8+
logs/
9+
*.log
10+
*.log.*
11+
12+
# Dependency directories
13+
jspm_packages/
14+
15+
# Optional npm cache directory
16+
.npm
17+
18+
# Optional eslint cache
19+
.eslintcache
20+
21+
# Optional REPL history
22+
.node_repl_history
23+
24+
# Output of 'npm pack'
25+
*.tgz
26+
27+
# dotenv environment variables file
28+
.env
29+
30+
# MacOS
31+
.DS_Store
32+
33+
# Windows
34+
Thumbs.db
35+
ehthumbs.db
36+
37+
# IDEs and editors
38+
.vscode/
39+
.idea/
40+
*.suo
41+
*.ntvs*
42+
*.njsproj
43+
*.sln
44+
*.sw?
45+
46+
# Other
47+
*.bak
48+
*.tmp
49+
50+
# Build files
51+
build/
52+
dist/

Diff for: js/.npmignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Dependency directories
2+
node_modules/
3+
4+
src/
5+
test/
6+
7+
# Optional npm cache directory
8+
.npm/
9+
10+
# Optional REPL history
11+
.node_repl_history
12+
13+
# Output directories
14+
dist/
15+
build/
16+
17+
# Logs
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
22+
# OS-specific files
23+
.DS_Store
24+
Thumbs.db

0 commit comments

Comments
 (0)