Skip to content

Commit

Permalink
Released 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclo committed Sep 3, 2020
1 parent c574671 commit 6f2e1fe
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### 1.0.1 (September 3, 2020)

* Fixed a few typos and commented the test suite,
* ...,
* Release.


### 1.0.0 (August 27, 2020)
Expand Down
32 changes: 25 additions & 7 deletions _dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ ES6Pakket relies on [Mocha](https://mochajs.org) and [Chai](http://chaijs.com) f

ES6Pakket uses [Travis CI](https://travis-ci.org) for continuous integration and [Coveralls.io](https://coveralls.io) to display test coverage.

Nota:
`ES6Pakket` is a fork of the boilerplate [ES6Kadoo](https://www.npmjs.com/package/@mobilabs/kadoo).




## Quick Startup

Expand All @@ -37,15 +42,28 @@ Or, if you don't have the rights to install es6lib globally, you can install it
npm install @mobilabs/es6pakket
```

Now populate your empty folder and create your first UMD library:
Then, create a `package.json` file that contains at least:

```json
{
"name": "MyApp",
"scripts": {
"create": "es6pakket populate --name ${npm_package_name} --author \"${npm_package_writer_name}\" --acronym ${npm_package_writer_acronym} --email ${npm_package_writer_email} --url ${npm_package_writer_url} && npm install"
},
"writer": {
"name": "John Doe",
"acronym": "jdo",
"email": "jdo@johndoe.com",
"url": "http://www.johndoe.com/"
}
}
```
Replace `MyApp` by your project name and fill `writer` with your credentials.

And finally, type in the terminal:

```bash
// populate
es6pakket populate -n myapp
// Or, if you installed the package locally:
./node_modules/.bin/es6pakket populate -n myapp
// Install Node.js packages
npm install
npm run create.
```

Now your folder contains the following files:
Expand Down

0 comments on commit 6f2e1fe

Please sign in to comment.