Skip to content

Commit

Permalink
Merge pull request #3 from smartive/feature/upgrade-deps
Browse files Browse the repository at this point in the history
Feature/upgrade deps
  • Loading branch information
buehler committed Jul 19, 2016
2 parents 4641619 + d974f88 commit cd5fe57
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 22 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: node_js
node_js:
- '6'
- '5'
- '4.2'

Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]


## [v0.4.0]
### Added
- Changelog

### Changed
- Updated dependencies
- Breaking: update extractor to new interface of `proc-that`


[Unreleased]: https://github.com/smartive/proc-that-rest-extractor/compare/v0.4.0...master
[v0.4.0]: https://github.com/smartive/proc-that-rest-extractor/compare/v0.3.2...v0.4.0
4 changes: 2 additions & 2 deletions RestExtractor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {IExtract} from 'proc-that';
import {Extractor} from 'proc-that';
import {Observable, Observer} from 'rxjs';

export enum RestExtractorMethod {
Expand All @@ -10,7 +10,7 @@ export enum RestExtractorMethod {
/**
*
*/
export class RestExtractor implements IExtract {
export class RestExtractor implements Extractor {
private rest:any = require('restler');

/**
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"scripts": {
"clean": "rimraf build",
"bootstrap": "npm install && typings install",
"pretest": "npm run bootstrap && npm run clean && tsc",
"pretest": "npm run clean && tsc",
"test": "mocha --ui bdd --recursive ./build",
"precitest": "npm run bootstrap && npm run clean && tsc",
"citest": "istanbul cover -x \"**/*.spec.*\" _mocha --report lcovonly -- --ui bdd --recursive ./build",
"develop": "npm run clean && tsc -w"
"develop": "npm run clean && tsc -w --sourceMap --pretty"
},
"keywords": [
"etl",
Expand All @@ -30,18 +30,18 @@
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del-cli": "^0.2.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"rimraf": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
"typescript": "^1.8.10",
"typings": "^1.3.1"
},
"dependencies": {
"proc-that": "^0.3.2",
"proc-that": "^0.4.0",
"restler": "^3.4.0",
"rxjs": "5.0.0-beta.4"
"rxjs": "^5.0.0-beta.10"
}
}
4 changes: 1 addition & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
},
"exclude": [
"node_modules",
"build",
"typings/browser.d.ts",
"typings/browser"
"build"
]
}
15 changes: 8 additions & 7 deletions typings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"name": "proc-that-rest-extractor",
"dependencies": {},
"ambientDependencies": {
"es6-shim": "registry:dt/es6-shim#0.31.2+20160317120654",
"node": "registry:dt/node#4.0.0+20160330064709"
"globalDependencies": {
"es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504",
"node": "registry:dt/node#6.0.0+20160709114037"
},
"ambientDevDependencies": {
"mocha": "registry:dt/mocha#2.2.5+20160317120654"
"globalDevDependencies": {
"mocha": "registry:dt/mocha#2.2.5+20160619032855"
},
"devDependencies": {
"chai": "registry:npm/chai#3.5.0+20160402210230",
"chai": "registry:npm/chai#3.5.0+20160415060238",
"chai-as-promised": "registry:npm/chai-as-promised#5.1.0+20160310030142",
"sinon": "registry:npm/sinon#1.16.0+20160309002336",
"sinon": "registry:npm/sinon#1.16.0+20160427193336",
"sinon-chai": "registry:npm/sinon-chai#2.8.0+20160310030142"
}
}

0 comments on commit cd5fe57

Please sign in to comment.