This commit is contained in:
Joseph Garrone 2020-05-15 22:57:11 +02:00
parent f405b1cc58
commit 1157143981

View file

@ -17,7 +17,7 @@ This template automate the boring and tedious tasks of:
- Writing a [README.md](https://github.com/garronej/denoify_ci/blob/dev/README.template.md) with decent presentation and instructions on how to install/import your module. - Writing a [README.md](https://github.com/garronej/denoify_ci/blob/dev/README.template.md) with decent presentation and instructions on how to install/import your module.
- Testing on multiples ``Node`` version before publishing. - Testing on multiples ``Node`` version before publishing.
- Maintaining a CHANGELOG. - Maintaining a CHANGELOG.
- Publishing on NPM. - Publishing on NPM and creating corresponding GitHub releases.
Good stuffs that come with using this template: Good stuffs that come with using this template:
- No source file are tracked on the default branch . - No source file are tracked on the default branch .
@ -25,6 +25,7 @@ Good stuffs that come with using this template:
``import {...} from "my_module/theFile"`` instead of the usual ``import {...} from "my_module/theFile"`` instead of the usual
``import {...} from "my_module/dist/theFile"`` ``import {...} from "my_module/dist/theFile"``
- CDN distribution for importing from an ``.html`` file with a ``<script>`` tag. - CDN distribution for importing from an ``.html`` file with a ``<script>`` tag.
- A branch ``latest`` always in sync with the latest release.
# How to use # How to use