Skip to content

Commit f8864ef

Browse files
docs(README): update dev description
1 parent ebbaccc commit f8864ef

File tree

2 files changed

+47
-11
lines changed

2 files changed

+47
-11
lines changed

.gitignore

Lines changed: 46 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
__tests__/runner/*
2-
3-
# comment out in distribution branches
1+
/.idea/
42
node_modules/
53

64
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
@@ -11,6 +9,7 @@ npm-debug.log*
119
yarn-debug.log*
1210
yarn-error.log*
1311
lerna-debug.log*
12+
.pnpm-debug.log*
1413

1514
# Diagnostic reports (https://nodejs.org/api/report.html)
1615
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -44,10 +43,11 @@ bower_components
4443
build/Release
4544

4645
# Dependency directories
46+
node_modules/
4747
jspm_packages/
4848

49-
# TypeScript v1 declaration files
50-
typings/
49+
# Snowpack dependency directory (https://snowpack.dev/)
50+
web_modules/
5151

5252
# TypeScript cache
5353
*.tsbuildinfo
@@ -58,6 +58,15 @@ typings/
5858
# Optional eslint cache
5959
.eslintcache
6060

61+
# Optional stylelint cache
62+
.stylelintcache
63+
64+
# Microbundle cache
65+
.rpt2_cache/
66+
.rts2_cache_cjs/
67+
.rts2_cache_es/
68+
.rts2_cache_umd/
69+
6170
# Optional REPL history
6271
.node_repl_history
6372

@@ -67,22 +76,37 @@ typings/
6776
# Yarn Integrity file
6877
.yarn-integrity
6978

70-
# dotenv environment variables file
79+
# dotenv environment variable files
7180
.env
72-
.env.test
81+
.env.development.local
82+
.env.test.local
83+
.env.production.local
84+
.env.local
7385

7486
# parcel-bundler cache (https://parceljs.org/)
7587
.cache
88+
.parcel-cache
7689

77-
# next.js build output
90+
# Next.js build output
7891
.next
92+
out
7993

80-
# nuxt.js build output
94+
# Nuxt.js build / generate output
8195
.nuxt
8296

97+
# Gatsby files
98+
.cache/
99+
# Comment in the public line in if your project uses Gatsby and not Next.js
100+
# https://nextjs.org/blog/next-9-1#public-directory-support
101+
# public
102+
83103
# vuepress build output
84104
.vuepress/dist
85105

106+
# vuepress v2.x temp and cache directory
107+
.temp
108+
.cache
109+
86110
# Serverless directories
87111
.serverless/
88112

@@ -91,4 +115,16 @@ typings/
91115

92116
# DynamoDB Local files
93117
.dynamodb/
94-
/.idea/
118+
119+
# TernJS port file
120+
.tern-port
121+
122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build:
3636
## Development
3737
### new version
3838
1) implement your changes
39-
2) commit with `npx commit`
39+
2) commit changes (pre-commit hook will do some code checks / changes and build the artifacts using ncc)
4040
3) set tag `git tag -a -m "my fancy release" v0.0.X`
4141
4) push with tags `git push --follow-tags`
4242

0 commit comments

Comments
 (0)