1
0
mirror of synced 2025-11-08 12:57:47 +00:00

feat(starter): add changelogs and examples

This commit is contained in:
Jason Dreyzehner
2017-02-12 11:23:46 -05:00
parent 7304e24d77
commit 5f18048ab7
19 changed files with 1121 additions and 42 deletions

27
examples/readme.md Normal file
View File

@@ -0,0 +1,27 @@
# `es7-typescript-starter` Usage Examples
This directory (`/examples`) can be deleted when forking this project. It contains some simple examples of how forks of this starter can be used by other projects. (Usually you'll want to provide these instructions in your root `readme.md`.)
## Node (Vanilla)
```bash
yarn build
cd examples/node-vanilla
node test.js
```
## Node (Typescript)
```bash
yarn build
cd examples/node-typescript
yarn && yarn build && yarn start
```
## Browser (Rollup, Tree-shaking)
```bash
yarn build
cd examples/browser
yarn && yarn build && yarn start
```