-
Notifications
You must be signed in to change notification settings - Fork 22
/
README
24 lines (21 loc) · 821 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
EE: Publish & verify checklist:
==============================
Publish
1. template.json match package.json as possible
2. Update 'package.json' version number
3. yarn format && yarn lint && yarn prepublishOnly && yarn test
4. git add . && git commit -m ''
5. git push
6. npm publish (ensure $npm adduser $npm login - on SSH sudo)
Verify:
=======
1. Check Github Actions & badges
open https://github.com/EliEladElrom/cra-template-must-have-libraries/actions
2. Verify version on npm:
npm info cra-template-must-have-libraries version
3. Build locally to mimic gitaction build;
npx create-react-app myapp --template cra-template-must-have-libraries .
4. Build using remote npm lib;
yarn create react-app my-app --template must-have-libraries
Dockerfile:
$ docker build . -t elieladelrom/cra-template-must-have-libraries