generator-ehrcraft-script 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -39
- package/generators/app/templates/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,39 +1,38 @@
|
|
|
1
|
-
# generator-ehrcraft-script [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]
|
|
2
|
-
>
|
|
3
|
-
|
|
4
|
-
## Installation
|
|
5
|
-
|
|
6
|
-
First, install [Yeoman](http://yeoman.io) and generator-ehrcraft-script using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
npm install -g yo
|
|
10
|
-
npm
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* Yeoman
|
|
23
|
-
* Yeoman
|
|
24
|
-
*
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
[npm-
|
|
33
|
-
[
|
|
34
|
-
[travis-
|
|
35
|
-
[
|
|
36
|
-
[daviddm-
|
|
37
|
-
[
|
|
38
|
-
[coveralls-
|
|
39
|
-
[coveralls-url]: https://coveralls.io/r/ehrforce/generator-ehrcraft-script
|
|
1
|
+
# generator-ehrcraft-script [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]
|
|
2
|
+
>
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
First, install [Yeoman](http://yeoman.io) and generator-ehrcraft-script using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm install -g yo
|
|
10
|
+
npm install -g generator-ehrcraft-script
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then generate your new project:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
yo ehrcraft-script
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Getting To Know Yeoman
|
|
20
|
+
|
|
21
|
+
* Yeoman has a heart of gold.
|
|
22
|
+
* Yeoman is a person with feelings and opinions, but is very easy to work with.
|
|
23
|
+
* Yeoman can be too opinionated at times but is easily convinced not to be.
|
|
24
|
+
* Feel free to [learn more about Yeoman](http://yeoman.io/).
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT © [Bjørn Næss]()
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
[npm-image]: https://badge.fury.io/js/generator-ehrcraft-script.svg
|
|
32
|
+
[npm-url]: https://npmjs.org/package/generator-ehrcraft-script
|
|
33
|
+
[travis-image]: https://travis-ci.com/ehrforce/generator-ehrcraft-script.svg?branch=master
|
|
34
|
+
[travis-url]: https://travis-ci.com/ehrforce/generator-ehrcraft-script
|
|
35
|
+
[daviddm-image]: https://david-dm.org/ehrforce/generator-ehrcraft-script.svg?theme=shields.io
|
|
36
|
+
[daviddm-url]: https://david-dm.org/ehrforce/generator-ehrcraft-script
|
|
37
|
+
[coveralls-image]: https://coveralls.io/repos/ehrforce/generator-ehrcraft-script/badge.svg
|
|
38
|
+
[coveralls-url]: https://coveralls.io/r/ehrforce/generator-ehrcraft-script
|
package/package.json
CHANGED