Skip to content

Commit 23eb505

Browse files
committed
v1.0.0
1 parent ebea4bf commit 23eb505

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.0.0
4+
* Settings is a global object handle from an accessible json file.
5+
* Includes some unit tests
6+
* Added CI with travis
7+
38
## 0.2.0
49
* Generate license file
510

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Node.js Project Initializer
44

5-
[![License][license-image]][license-url] [![version][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url]
5+
[![License][license-image]][license-url] [![version][npm-image]][npm-url] [![coverage][coverage-image]][coverage-url] [![downloads][downloads-image]][downloads-url]
66

77
An [npm initializer][npm/init] to scaffold a node project and include basic tools like lint, testing, etc.
88

@@ -22,7 +22,11 @@ An [npm initializer][npm/init] to scaffold a node project and include basic tool
2222
npm install -g create-nodejs-project
2323
```
2424

25-
2. You will be prompted for your Github information
25+
2. Run the setup configuration
26+
```
27+
npm setup
28+
```
29+
You will be prompted for your Github information
2630
If you do not have the information at the moment, you can keep it empty.
2731
In order to create projects with Github integration, you will need to add the authentication information later. See [Github Auth](#configure-Github-authentication)
2832

@@ -107,3 +111,6 @@ If you are planning to allow this script to create your Github repositories, is
107111

108112
[downloads-url]: https://www.npmjs.com/package/create-nodejs-project
109113
[downloads-image]: https://img.shields.io/npm/dt/create-nodejs-project.svg?style=for-the-badge
114+
115+
[coverage-url]: https://coveralls.io/github/nmicht/create-nodejs-project?branch=master
116+
[coverage-image]: https://img.shields.io/coveralls/github/nmicht/create-nodejs-project.svg?style=for-the-badge

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nodejs-project",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "An npm initializer to scaffold a node project and include basic tools like lint, testing, etc.",
55
"main": "src/index.js",
66
"bin": "src/index.js",

0 commit comments

Comments
 (0)