Skip to content

Adds test coverage, build badges and some travis configs #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '10'
- node
deploy:
provider: npm
email: hola@michelletorres.mx
Expand All @@ -10,3 +10,5 @@ deploy:
tags: true
repo: nmicht/create-nodejs-project
branch: master
after_success:
- npm run coveralls
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.0.1
* Test coverage with coveralls, mocha and travis

## 1.0.0
* Settings is a global object handle from an accessible json file.
* Includes some unit tests
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

# Node.js Project Initializer

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


[![coverage][coverage-image]][coverage-url]
[![build][build-image]][build-url]

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

Expand Down Expand Up @@ -114,3 +120,6 @@ If you are planning to allow this script to create your Github repositories, is

[coverage-url]: https://coveralls.io/github/nmicht/create-nodejs-project?branch=master
[coverage-image]: https://img.shields.io/coveralls/github/nmicht/create-nodejs-project.svg?style=for-the-badge

[build-url]: https://travis-ci.org/nmicht/create-nodejs-project
[build-image]: https://img.shields.io/travis/nmicht/create-nodejs-project.svg?logo=travis&style=for-the-badge
Loading