Skip to content

Commit 2f51c34

Browse files
committed
feat: initial release of smart-object-utils with deepClone, deepMerge and updateNested
0 parents  commit 2f51c34

24 files changed

+4294
-0
lines changed

.gitignore

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
lerna-debug.log*
7+
8+
# Build outputs
9+
dist/
10+
build/
11+
lib/
12+
*.tgz
13+
*.tar.gz
14+
15+
# Test coverage
16+
coverage/
17+
.nyc_output
18+
*.lcov
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Environment variables
27+
.env
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# Logs
34+
logs
35+
*.log
36+
npm-debug.log*
37+
yarn-debug.log*
38+
yarn-error.log*
39+
40+
# IDEs and editors
41+
.vscode/
42+
.idea/
43+
*.swp
44+
*.swo
45+
*~
46+
47+
# OS generated files
48+
.DS_Store
49+
.DS_Store?
50+
._*
51+
.Spotlight-V100
52+
.Trashes
53+
ehthumbs.db
54+
Thumbs.db
55+
56+
# Temporary folders
57+
tmp/
58+
temp/
59+
60+
yarn.lock
61+
package-lock.json
62+
63+
# TypeScript
64+
*.tsbuildinfo
65+
66+
# ESLint cache
67+
.eslintcache
68+
69+
# Stylelint cache
70+
.stylelintcache
71+
72+
# Cache directories
73+
.cache/
74+
.parcel-cache/
75+
76+
# Bundle analyzer reports
77+
bundle-analysis.html
78+
stats.html
79+
80+
# Microbundle cache
81+
.rpt2_cache/
82+
.rts2_cache_cjs/
83+
.rts2_cache_es/
84+
.rts2_cache_umd/
85+
86+
# dotenv environment variable files
87+
.env*
88+
89+
# Yarn Integrity file
90+
.yarn-integrity
91+
92+
# Optional npm cache directory
93+
.npm

0 commit comments

Comments
 (0)