From cc384e7fa4aff01b32b07b6ebca90dd10df60d1d Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Sat, 10 Mar 2018 14:22:26 -0500 Subject: [PATCH] build(greenkeeper): ignore updates to @types/node this project will stick to the latest LTS release --- README.md | 6 ++---- package.json | 21 +++++++++++++-------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 66ee750..03e7daf 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ Typescript Starter Darktypescript-starter +[![NPM version](https://img.shields.io/npm/v/typescript-starter.svg)](https://www.npmjs.com/package/typescript-starter) [![Build Status](https://travis-ci.org/bitjson/typescript-starter.svg?branch=master)](https://travis-ci.org/bitjson/typescript-starter) [![Codecov](https://img.shields.io/codecov/c/github/bitjson/typescript-starter.svg)](https://codecov.io/gh/bitjson/typescript-starter) -[![NPM version](https://img.shields.io/npm/v/typescript-starter.svg)](https://www.npmjs.com/package/typescript-starter) [![Standard Version](https://img.shields.io/badge/release-standard%20version-brightgreen.svg)](https://github.com/conventional-changelog/standard-version) -[![dependencies Status](https://david-dm.org/bitjson/typescript-starter/status.svg)](https://david-dm.org/bitjson/typescript-starter) -[![devDependencies Status](https://david-dm.org/bitjson/typescript-starter/dev-status.svg)](https://david-dm.org/bitjson/typescript-starter?type=dev) # typescript-starter @@ -117,7 +115,7 @@ To generate and publish your documentation to [GitHub Pages](https://pages.githu npm run docs:publish ``` -Once published, your documentation should be available at the proper GitHub Pages URL for your repo. See [this repo's GitHub Pages](https://bitjson.github.io/typescript-starter/) for an example. +Once published, your documentation should be available at the proper GitHub Pages URL for your repo. See [`typescript-starter`'s GitHub Pages](https://bitjson.github.io/typescript-starter/) for an example.

TypeDoc documentation example diff --git a/package.json b/package.json index 5873833..33c2d9b 100644 --- a/package.json +++ b/package.json @@ -115,11 +115,6 @@ "typedoc": "^0.11.1", "typescript": "^2.4.1" }, - "nyc": { - "exclude": [ - "**/*.spec.js" - ] - }, "ava": { "failFast": true, "files": [ @@ -129,12 +124,22 @@ "build/main/**/*.js" ] }, - "prettier": { - "singleQuote": true - }, "config": { "commitizen": { "path": "cz-conventional-changelog" } + }, + "greenkeeper": { + "ignore": [ + "@types/node" + ] + }, + "prettier": { + "singleQuote": true + }, + "nyc": { + "exclude": [ + "**/*.spec.js" + ] } }