Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

travisci-node-update

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

travisci-node-update

Updates target Node version in Travis CI config to latest minor version

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

travisci-node-update

Updates each target Node version in Travis CI config to latest minor version.

This node module updates your Travis CI config file .travis.yml ensuring you're always running tests against the latest available minor versions for each of the listed major versions.

Install

npm install -g travisci-node-update

Usage

Invoke the travisci-node-update command on the desired target directory (defaults to .).

travisci-node-update [target_dir]

Example

At the moment of writing, latest Node versions are 7.3.0, 6.9.2, 5.12.0, and 4.7.0.

# .travis.yml before
language: node_js
node_js:
  - "7.2"
  - "6.9"
  - "5.12"
  - "4.6"
script: npm run test

This will update the versions listed in .travis.yml to 7.3 and 4.7, leaving 6.9 and 5.12 untouched:

travisci-node-update .
# .travis.yml after
language: node_js
node_js:
  - "7.3"
  - "6.9"
  - "5.12"
  - "4.7"
script: npm run test

License

MIT

Copyright (c) 2017 Claudio Procida

Keywords

FAQs

Package last updated on 03 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc