Skip to content

Commit fee708d

Browse files
authored
Merge pull request #3 from fells-code/2-feature-create-seamless-init
Create Seamless CLI - INIT
2 parents 21e596e + 5801f12 commit fee708d

25 files changed

Lines changed: 1689 additions & 541 deletions

.gitignore

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1-
node_modules
2-
.npmrc
1+
# ----------------------------
2+
# Dependencies
3+
# ----------------------------
4+
node_modules/
5+
6+
# ----------------------------
7+
# Build Output
8+
# ----------------------------
9+
dist/
10+
*.tsbuildinfo
11+
12+
# ----------------------------
13+
# Logs
14+
# ----------------------------
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
pnpm-debug.log*
19+
*.log
20+
21+
# ----------------------------
22+
# Environment Files
23+
# ----------------------------
24+
.env
25+
.env.local
26+
.env.*.local
27+
28+
# ----------------------------
29+
# Coverage / Testing
30+
# ----------------------------
31+
coverage/
32+
.nyc_output/
33+
34+
# ----------------------------
35+
# IDE / Editor
36+
# ----------------------------
37+
.vscode/
38+
.idea/
39+
*.swp
40+
*.swo
41+
.DS_Store
42+
43+
# ----------------------------
44+
# OS
45+
# ----------------------------
46+
Thumbs.db
347
.DS_Store
48+
49+
# ----------------------------
50+
# npm pack artifacts
51+
# ----------------------------
52+
*.tgz
53+
54+
# ----------------------------
55+
# Local linking artifacts
56+
# ----------------------------
57+
.npmrc

0 commit comments

Comments
 (0)