Skip to content

Commit 2c05890

Browse files
committed
setup template
1 parent 661b2c8 commit 2c05890

File tree

9 files changed

+1082
-57
lines changed

9 files changed

+1082
-57
lines changed

.gitignore

Lines changed: 1 addition & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
88

9-
# Diagnostic reports (https://nodejs.org/api/report.html)
10-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11-
12-
# Runtime data
13-
pids
14-
*.pid
15-
*.seed
16-
*.pid.lock
17-
189
# Directory for instrumented libs generated by jscoverage/JSCover
1910
lib-cov
2011

@@ -25,12 +16,6 @@ coverage
2516
# nyc test coverage
2617
.nyc_output
2718

28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29-
.grunt
30-
31-
# Bower dependency directory (https://bower.io/)
32-
bower_components
33-
3419
# node-waf configuration
3520
.lock-wscript
3621

@@ -53,52 +38,11 @@ typings/
5338
# Optional eslint cache
5439
.eslintcache
5540

56-
# Microbundle cache
57-
.rpt2_cache/
58-
.rts2_cache_cjs/
59-
.rts2_cache_es/
60-
.rts2_cache_umd/
61-
62-
# Optional REPL history
63-
.node_repl_history
64-
6541
# Output of 'npm pack'
6642
*.tgz
6743

6844
# Yarn Integrity file
6945
.yarn-integrity
7046

71-
# dotenv environment variables file
72-
.env
73-
.env.test
74-
75-
# parcel-bundler cache (https://parceljs.org/)
76-
.cache
77-
78-
# Next.js build output
79-
.next
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
47+
# generate output
8348
dist
84-
85-
# Gatsby files
86-
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88-
# https://nextjs.org/blog/next-9-1#public-directory-support
89-
# public
90-
91-
# vuepress build output
92-
.vuepress/dist
93-
94-
# Serverless directories
95-
.serverless/
96-
97-
# FuseBox cache
98-
.fusebox/
99-
100-
# DynamoDB Local files
101-
.dynamodb/
102-
103-
# TernJS port file
104-
.tern-port

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
dist
2+
.babelrc
3+
.storybook
4+
.gitignore
5+
.prettierrc
6+
rollup.config.js
7+
tsconfig.json

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

0 commit comments

Comments
 (0)