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

grunt-release-hoodie

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-release-hoodie - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

6

Gruntfile.js

@@ -16,2 +16,8 @@ module.exports = function (grunt) {

grunt.registerTask('default', function() {
grunt.log
.ok()
.write('Don\'t mind me. I\'m just here for deployments...');
});
};

2

package.json
{
"name": "grunt-release-hoodie",
"version": "0.0.1",
"version": "0.0.2",
"description": "Automatically configures the hoodie release process.",

@@ -5,0 +5,0 @@ "repository": {

@@ -9,17 +9,25 @@ module.exports = function (grunt) {

var bump = {
commitMessage: 'chore(release): v%VERSION%',
files: ['package.json', 'bower.json'],
commitFiles: [
'package.json',
'bower.json',
'CHANGELOG.md',
'dist/*'
],
pushTo: 'origin master'
};
var options = this.options({
bump: {
commitMessage: 'chore(release): v%VERSION%',
files: ['package.json', 'bower.json'],
commitFiles: [
'package.json',
'bower.json',
'CHANGELOG.md',
'dist/*'
],
pushTo: 'origin master'
},
bump: {},
tasks: ['build']
});
for (var option in bump) {
if (!options.bump[option]) {
options.bump[option] = bump[option];
}
}
grunt.config.set('bump', {options: options.bump});

@@ -26,0 +34,0 @@

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