Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@ language: node_js
branches:
only:
- master
- /^greenkeeper/.*$/
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6.4'
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script:
- greenkeeper-lockfile-update
- npm prune && npm cache clean
script:
- npm run test:prod && npm run build
after_script: greenkeeper-lockfile-upload
after_success:
- npm run report-coverage
- npm run deploy-docs
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# TypeScript minimal lodash

[![Coverage Status](https://coveralls.io/repos/github/arusanov/typedash/badge.svg?branch=master)](https://coveralls.io/github/arusanov/typedash?branch=master)
[![Build Status](https://travis-ci.org/arusanov/typedash.svg?branch=master)](https://travis-ci.org/arusanov/typedash)
[![Coverage Status](https://coveralls.io/repos/github/arusanov/typedash/badge.svg?branch=master)](https://coveralls.io/github/arusanov/typedash?branch=master)
[![Greenkeeper badge](https://badges.greenkeeper.io/arusanov/typedash.svg)](https://greenkeeper.io/)

Minimal (and naive) implementation subset of lodash functions in typescript
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
"modulePathIgnorePatterns": [
"/^((?!src).)/"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
Expand All @@ -82,18 +81,18 @@
"colors": "^1.1.2",
"commitizen": "^2.9.5",
"coveralls": "^2.11.15",
"cross-env": "^4.0.0",
"cross-env": "^5.0.0",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.1",
"jest": "^19.0.2",
"jest": "^20.0.3",
"prompt": "^1.0.0",
"replace-in-file": "^2.3.2",
"rimraf": "^2.5.4",
"rollup": "^0.41.6",
"rollup-plugin-memory": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"semantic-release": "^6.3.6",
"ts-jest": "^19.0.0",
"ts-jest": "^20.0.4",
"ts-loader": "^2.1.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
Expand Down
Loading