Skip to content

Commit

Permalink
1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mattqs committed Aug 3, 2018
1 parent 2b44c1b commit 3fa1ef9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 67 deletions.
11 changes: 2 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "iojs"
- "8.11.1"

install:
- npm install @types/blue-tape
- npm install blue-tape
- npm install rimraf
- npm install tap-diff
Expand Down
1 change: 0 additions & 1 deletion lib/index.spec.d.ts

This file was deleted.

52 changes: 0 additions & 52 deletions lib/index.spec.js

This file was deleted.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"name": "nodeify-ts",
"version": "1.0.4",
"version": "1.0.5",
"description": "Create functions that both return promises and accept node-style callbacks",
"main": "dist/index.js",
"typings": "dist/index",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "rimraf dist/ && tsc",
"build": "rimraf lib/ && tsc",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test": "npm run lint && npm run build && npm run test-spec",
"prepare": "npm run lint && npm run build && rimraf dist/**/*.spec.* "
"prepare": "npm run lint && npm run build && rimraf lib/**/*.spec.* "
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 3fa1ef9

Please sign in to comment.