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

grunt-subgrunt

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-subgrunt - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

test/fixtures/coffee/Gruntfile.coffee

5

changelog.md

@@ -0,1 +1,6 @@

### v0.4.3 [view commit logs](https://github.com/tusbar/grunt-subgrunt/compare/v0.4.3...v0.4.4)
* Add tests (`customCase` and `coffee`)
* Update dependencies
### v0.4.3 [view commit logs](https://github.com/tusbar/grunt-subgrunt/compare/v0.4.2...v0.4.3)

@@ -2,0 +7,0 @@

@@ -46,2 +46,8 @@ 'use strict';

'test/fixtures/npmClean/tmp'
],
customCase: [
'test/fixtures/customCase/tmp'
],
coffeee: [
'test/fixtures/coffee/tmp'
]

@@ -96,2 +102,12 @@ },

]
},
customCase: {
projects: [
'test/fixtures/customCase'
]
},
coffee: {
projects: [
'test/fixtures/coffee'
]
}

@@ -98,0 +114,0 @@ },

6

package.json
{
"name": "grunt-subgrunt",
"version": "0.4.3",
"version": "0.4.4",
"description": "Run sub-projects' grunt tasks.",

@@ -32,3 +32,3 @@ "repository": {

"async": "^0.9.0",
"glob": "^4.0.5"
"glob": "^4.3.4"
},

@@ -43,4 +43,4 @@ "engines": {

"grunt-contrib-clean": "^0.6.0",
"load-grunt-tasks": "^1.0.0"
"load-grunt-tasks": "^2.0.0"
}
}

@@ -111,4 +111,25 @@ 'use strict';

test.done();
},
customCase: function (test) {
test.expect(1);
var actual = read('test/fixtures/customCase/tmp/output.txt');
var expected = 'success';
test.equal(expected, actual, 'should create a file with "success" in it after running the "customCase" task');
test.done();
},
coffee: function (test) {
test.expect(1);
var actual = read('test/fixtures/coffee/tmp/output.txt');
var expected = 'success';
test.equal(expected, actual, 'should create a file with "success" in it after running the "coffee" task');
test.done();
}
};
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