Skip to content

Commit afe944a

Browse files
authored
Merge pull request #14 from bromne/develop
v2.0.0
2 parents 4e7f20c + 2195af7 commit afe944a

12 files changed

Lines changed: 4330 additions & 433 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.nyc_output
12
node_modules
23
coverage
34
testResult

.npmignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ testResult/
66
dist/test/
77

88
.gitignore
9+
.nyc_output
910
.travis.yml
1011
*.log
11-
README.md
1212
tsconfig.json
13-
13+
tslint.json

.travis.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
language: node_js
22
node_js:
3-
- "6"
3+
- "8"
44
before_install:
5-
- "npm install"
5+
- npm install
66
install:
7-
- "npm run build"
7+
- npm run build
88
script:
9-
- "npm run test"
10-
- "npm run coverage"
11-
after_success:
12-
- "npm run coveralls"
9+
- npm run lint
10+
- npm run test
11+
- npm run coveralls
12+
deploy:
13+
provider: npm
14+
email: "bromne@gmail.com"
15+
api_key: $NPM_TOKEN
16+
on:
17+
tags: true

README.md

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

33
[![npm](https://img.shields.io/npm/v/typescript-optional.svg)](https://www.npmjs.com/package/typescript-optional)
44
[![License](https://img.shields.io/npm/l/typescript-optional.svg)](https://www.npmjs.com/package/typescript-optional)
5-
[![Build Status](https://travis-ci.org/bromne/typescript-optional.svg?branch=master)](https://travis-ci.org/bromne/typescript-optional)
6-
[![Coverage Status](https://coveralls.io/repos/github/bromne/typescript-optional/badge.svg?branch=master)](https://coveralls.io/github/bromne/typescript-optional?branch=master)
5+
[![Build Status](https://travis-ci.org/bromne/typescript-optional.svg?branch=develop)](https://travis-ci.org/bromne/typescript-optional)
6+
[![Coverage Status](https://coveralls.io/repos/github/bromne/typescript-optional/badge.svg?branch=develop)](https://coveralls.io/github/bromne/typescript-optional?branch=develop)
77

88
Optional (like Java) implementation in TypeScript
99

0 commit comments

Comments
 (0)