Skip to content

Commit 3fa1ef9

Browse files
committed
1.0.5
1 parent 2b44c1b commit 3fa1ef9

File tree

4 files changed

+6
-67
lines changed

4 files changed

+6
-67
lines changed

.travis.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
language: node_js
22
node_js:
3-
- "5"
4-
- "5.1"
5-
- "4"
6-
- "4.2"
7-
- "4.1"
8-
- "4.0"
9-
- "0.12"
10-
- "0.11"
11-
- "iojs"
3+
- "8.11.1"
124

135
install:
6+
- npm install @types/blue-tape
147
- npm install blue-tape
158
- npm install rimraf
169
- npm install tap-diff

lib/index.spec.d.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/index.spec.js

Lines changed: 0 additions & 52 deletions
This file was deleted.

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
{
22
"name": "nodeify-ts",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Create functions that both return promises and accept node-style callbacks",
5-
"main": "dist/index.js",
6-
"typings": "dist/index",
5+
"main": "lib/index.js",
76
"files": [
87
"lib/"
98
],
109
"scripts": {
1110
"lint": "tslint src/**/*.ts",
12-
"build": "rimraf dist/ && tsc",
11+
"build": "rimraf lib/ && tsc",
1312
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
1413
"test": "npm run lint && npm run build && npm run test-spec",
15-
"prepare": "npm run lint && npm run build && rimraf dist/**/*.spec.* "
14+
"prepare": "npm run lint && npm run build && rimraf lib/**/*.spec.* "
1615
},
1716
"repository": {
1817
"type": "git",

0 commit comments

Comments
 (0)