New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-iw-release

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-iw-release - npm Package Compare versions

Comparing version 1.0.3 to 1.0.5

15

package.json
{
"name": "grunt-iw-release",
"version": "1.0.3",
"version": "1.0.5",
"description": "InsideWarehouse release/deploy flow",

@@ -24,16 +24,15 @@ "scripts": {

"dependencies": {
"grunt": "0.4.x",
"grunt-bump": "0.6.x",
"@insidewarehouse/grunt-ssh": "0.12.x",
"grunt": "1.x",
"grunt-bump": "0.8.x",
"grunt-checkbranch": "1.x",
"grunt-checkpending": "1.x",
"grunt-ssh": "0.12.x",
"shelljs": "0.5.x"
"shelljs": "0.7.x"
},
"devDependencies": {
"grunt-release": "0.13.x"
"grunt-release": "0.14.x"
},
"engines": {
"node": "0.12.x || 4.x",
"iojs": "*"
"node": "4.x"
}
}
module.exports = function (grunt) {
var loadTasks = require('../lib/loadTasks');
loadTasks(grunt, "grunt-ssh");
loadTasks(grunt, "@insidewarehouse/grunt-ssh");

@@ -84,3 +84,3 @@ var fs = require("fs"),

var headCommit = headOutput.output.trim(), tagCommit = tagOutput.output.trim();
var headCommit = headOutput.stdout.trim(), tagCommit = tagOutput.stdout.trim();
if (headCommit !== tagCommit) {

@@ -87,0 +87,0 @@ grunt.fail.fatal("Expected to be on commit '" + tagCommit + "' for tag '" + checkTag + "', but HEAD is at '" + headCommit + "'")

@@ -23,3 +23,3 @@ module.exports = function (grunt) {

var topLevelPath = toplevelOutput.output.trim();
var topLevelPath = toplevelOutput.stdout.trim();
if (!grunt.file.isPathCwd(topLevelPath)) {

@@ -26,0 +26,0 @@ var pkgName = grunt.config.get("pkg.name").replace(/\@\w+\//, '');

Sorry, the diff of this file is not supported yet

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