You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

generate-travis

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generate-travis - npm Package Compare versions

Comparing version
0.1.1
to
0.1.2
+5
-5
generator.js

@@ -14,9 +14,9 @@ 'use strict';

* ```sh
* $ gen travis:travis-yml
* $ gen travis:travis
* ```
* @name travis:travis-yml
* @name travis:travis
* @api public
*/
app.task('travis-yml', { silent: true }, function(cb) {
app.task('travis', { silent: true }, function(cb) {
return app.src('travis.yml', {cwd: path.resolve(__dirname, 'templates')})

@@ -30,3 +30,3 @@ .pipe(app.dest(function(file) {

/**
* Alias to enable running the [travis-yml](#travis-yml) task with the following command:
* Alias to enable running the [travis](#travis) task with the following command:
*

@@ -40,3 +40,3 @@ * ```sh

app.task('default', { silent: true }, ['travis-yml']);
app.task('default', { silent: true }, ['travis']);
};
{
"name": "generate-travis",
"description": "Generate a .travis.yml file to the cwd or specified directory. Install globally and run with generate's CLI, or use as a component in your own generator.",
"version": "0.1.1",
"version": "0.1.2",
"homepage": "https://github.com/generate/generate-travis",

@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",