hamcha
/
tghandbook
Arquivado
1
0
Fork 1

Add build script and readme

Esse commit está contido em:
Hamcha 2020-06-16 18:03:14 +02:00
commit b5db3d3328
Assinado por: hamcha
ID da chave GPG: 41467804B19A3315
3 arquivos alterados com 13 adições e 2 exclusões

3
.gitignore externo
Ver arquivo

@ -1,3 +1,4 @@
node_modules
dist
.cache
.cache
yarn-error.log

9
README.md Normal file
Ver arquivo

@ -0,0 +1,9 @@
# /tg/ handbook
## Building
`yarn build`
## Development
`yarn && yarn dev`

Ver arquivo

@ -4,7 +4,8 @@
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel index.html"
"dev": "parcel index.html",
"build": "parcel build index.html"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",