Add build script and readme

This commit is contained in:
Hamcha 2020-06-16 18:03:14 +02:00
부모 ba12ef2d12
커밋 b5db3d3328
로그인 계정: hamcha
GPG 키 ID: 41467804B19A3315
3개의 변경된 파일13개의 추가작업 그리고 2개의 파일을 삭제

3
.gitignore vendored
파일 보기

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

9
README.md Normal file
파일 보기

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

파일 보기

@ -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",