Skip to content

Commit

Permalink
merge develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosrberto committed Jun 2, 2018
2 parents ccba6ae + 73d93a0 commit dfbaec0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
21 changes: 14 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
language: node_js
node_js:
- "8"
- '8'
install:
- yarn
- yarn
script:
- yarn lint
- yarn test
- yarn cov

- yarn lint
- yarn cov
- yarn build
after_success:
- yarn cov:publish
- yarn cov:publish
deploy:
provider: npm
email: carlos.rberto@gmail.com
api_key:
secure: J9UwnXlPYAlx3lFPB/2VU9Vv4Y0xQmEPgEzgMic9keVjTKKnIfckdly1ppnaw8jFqe51sZiGeZqWwkajDzgQXUplX19vhIuR3qr6dXwKjeUCtdHpCrrFvZ0cKIJiN+nktMxOdmrL/JZ8xP4IBN0VovdAL4yVU7+69P/Bey8xyiLVr3BGon2e8Hcnz6HhhNgypSm59x+lULp2/7V3u7OXXXXRJkVo2Z8tnT+V7baIkgfyB0ub804iuO28z3o8tlsWWO97rMy17CtdcEhIiYPK9hSFkyP1Z0xaQfLRZdVy8ZhSLW4tvTdGiSXqSpWVHCNb/7Tp2mCXofWxjVB0dm4+cRAktSukHTwtAXNbaQQ1SaVlgl1MD9sT/4RMuQ4J+7zhyP/wRN1JQsFYh8lBseCcEPwZgsoZeSuJbVippgIsoXynY2G0kmAkbeAsmGzhRJYNbeAK8In1AOtxcvu71NofLKejIHuVVZ088LxYnVKoHJeubvWrQyKxDMfCt2Apa07Q7HS4yWT9lwN8FfoRR7O3aE082I1JWd7hvXTpodK/mJWsHb4mE1t3/D5drRd4FSJN70N/3mbMBmfawfFQSW8RM/HfTLoV3rALfc+fQAmtwEJH1MfnQAaMsyWx2mEdx+ZJqis0zkyP+G5J2tJgbWCnjsiAHoMgRSd0yC1+enP7ZnY=
on:
branch: master
repo: carlosrberto/lazy-list
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carlosrberto/lazy-list",
"version": "0.1.1",
"version": "0.1.2",
"description": "LazyList implements map, filter and reduce in JavaScript Arrays with lazy evaluation.",
"main": "lib/index.js",
"repository": "git@github.com:carlosrberto/lazy-list.git",
Expand Down Expand Up @@ -31,8 +31,7 @@
"cov:publish": "cat ./.coverage/lcov.info | coveralls",
"lint": "eslint .",
"clean": "rimraf lib",
"build": "npm run clean && npm run lint && npm run test && rollup -c",
"bump": "bump --prompt --commit --tag --push",
"prepublishOnly": "npm run build && npm run bump"
"build": "rollup -c",
"bump": "bump --prompt --commit --tag --push"
}
}

0 comments on commit dfbaec0

Please sign in to comment.