Socket
Socket
Sign inDemoInstall

jake

Package Overview
Dependencies
0
Maintainers
1
Versions
166
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.17 to 0.1.18

13

lib/jake.js

@@ -277,3 +277,3 @@ /*

try {
stats = fs.statSync(name);
stats = fs.statSync(task.name);
modTime = stats.ctime;

@@ -303,3 +303,3 @@ }

try {
stats = fs.statSync(name);
stats = fs.statSync(task.name);
modTime = stats.ctime;

@@ -412,6 +412,7 @@ }

descr = task.description || '(No description)';
descr = '\033[90m # ' + descr + '\033[39m \033[37m \033[39m';
console.log('jake ' + name + padding + descr);
descr = task.description
if (descr) {
descr = '\033[90m # ' + descr + '\033[39m \033[37m \033[39m';
console.log('jake ' + name + padding + descr);
}
}

@@ -418,0 +419,0 @@ };

@@ -64,10 +64,5 @@ /*

// Stub tasks
desc('Build all the packages');
task('package');
desc('Force a rebuild of the package files')
desc('Force a rebuild of the package')
task({'repackage': ['clobberPackage', 'package']});
desc('Remove package products')
task('clobberPackage', function () {

@@ -80,2 +75,3 @@ exec('rm -fr ' + self.packageDir, function (err, stdout, stderr) {

desc('Remove the package')
task({'clobber': ['clobberPackage']});

@@ -108,2 +104,3 @@

desc('Build the package for distribution');
task({'package': compressTaskArr}, function () {});

@@ -110,0 +107,0 @@

{ "name": "jake"
, "version": "0.1.17"
, "version": "0.1.18"
, "author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)"

@@ -4,0 +4,0 @@ , "bin": { "jake": "./bin/cli.js" }

@@ -404,1 +404,4 @@ ### Jake -- JavaScript build tool for Node.js

### License
Licensed under the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>)

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc