- Notifications
You must be signed in to change notification settings - Fork0
Update a `.travis.yml` file based on a template and preferences. This updater can be used from the command line when installed globally, or as a plugin in other updaters.
License
update/updater-travis
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Update .travis.yml based on preferences.
(TOC generated byverb usingmarkdown-toc)
Details
Update is a new, open-source developer framework for automating updates of any kind to code projects. All actual updating is done plugins called "updaters", like this one.
Updaters can be run from the command line whenUpdate's CLI is installed globally, or they can be used as building blocks for creating otherupdaters.
For more information:
- Visit theupdate project
- Visit theupdate documentation
- Findupdaters on npm (help usauthor updaters)
Most updaters do one specific thing. This updater adds a.travis.yml
file or replaces the.travis.yml
file in the current working directory using a template defined by you in~/templates/_travis.yml
(user home on your system), or the generic template in this project'stemplates directory.
Installing the CLI
To runupdater-travis
from the command line, you'll need to installUpdate globally first. You can do that now with the following command:
$ npm install --global update
This adds theupdate
command to your system path, allowing it to be run from any directory.
Install updater-travis
Install this module with the following command:
$ npm install --global updater-travis
Make sure your work is committed, then run the updater'sdefault
task with the following command:
$ update travis
What will happen?
Upon running$ update travis
command, this updater'sdefault
task will be executed, which replaces the.travis.yml
file in the cwd with the~/templates/_travis.yml
template defined by you, or the default templates found intemplates/_travis.yml in this repository.
(Note that all dotfile templates are prefixed with an underscore to prevent programs from mistaking them as real files)
Visit thedocumentation for tasks.
You might also find these projects useful.
- updater-editorconfig: Update or add a
.editorconfig
in the current working directory using a template defined by…more |homepage - updater-eslint: Update a
.eslintrc.json
file based on a template and preferences. This updater can be used…more |homepage - updater-license: Update the copyright statement and year in a MIT
LICENSE
file. |homepage
Are you usingUpdate in your project? Have you published anupdater and want to share your Update project with the world?
Here are some suggestions!
- If you get like Update and want to tweet about it, please use the hashtag
#updatejs
(not@
) - Show your love by starringUpdate and
updater-travis
- Get implementation help onStackOverflow (please use the
updatejs
tag in questions) - Gitter Discuss Update with us onGitter
- If you publish an updater, thank you! To make your project as discoverable as possible, please add the keyword
updateupdater
to package.json.
Pull requests and stars are always welcome. For bugs and feature requests,please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install&& npmtest
Jon Schlinkert
Copyright © 2017,Jon Schlinkert.Released under theMIT License.
This file was generated byverb-generate-readme, v0.6.0, on July 11, 2017.
About
Update a `.travis.yml` file based on a template and preferences. This updater can be used from the command line when installed globally, or as a plugin in other updaters.