Skip to content

Commit

Permalink
build: prepare dependencies for GK
Browse files Browse the repository at this point in the history
  • Loading branch information
andy.patterson authored and andnp committed Apr 12, 2018
1 parent 6f026d2 commit c091cb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"@commitlint/config-conventional": "^6.1.3",
"@types/jest": "^22.2.2",
"@types/jest": "~22.2.2",
"commitlint": "^6.1.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
Expand All @@ -68,8 +68,5 @@
},
"release": {
"branch": "master"
},
"dependencies": {
"simplytyped": "^1.0.4"
}
}
3 changes: 1 addition & 2 deletions tests/maybe.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { AnyFunc } from 'simplytyped';
import Maybe, { maybe, none, some } from '../src';

// -------
// Helpers
// -------
const execEach = (...args: AnyFunc[]) => () => args.forEach(arg => arg());
const execEach = (...args: Array<() => any>) => () => args.forEach(arg => arg());
const noop = () => { /* stub */ };
const raiseError = () => {
throw new Error('oops');
Expand Down

0 comments on commit c091cb1

Please sign in to comment.