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

grunt-jsdoc

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-jsdoc - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

doc/exec.js.html

5

package.json
{
"name": "grunt-jsdoc",
"description": "Integrates jsdoc3 generation into your Grunt build",
"version": "0.3.2",
"version": "0.3.3",
"homepage": "https://github.com/krampstudio/grunt-jsdoc-plugin",

@@ -46,5 +46,6 @@ "author": {

"grunt",
"jsdoc",
"documentation",
"jsdoc",
"jsdoc3"
]
}

1

README.md

@@ -95,2 +95,3 @@ # grunt-jsdoc-plugin [![Build Status](https://travis-ci.org/krampstudio/grunt-jsdoc-plugin.png)](https://travis-ci.org/krampstudio/grunt-jsdoc-plugin)

* _0.3.2_ Fix [bug #32](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/32)
* _0.3.3_ Fix [bug #34](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/34) and [bug #36](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/34)
* _0.2.0_ Migrate to grunt 0.4

@@ -97,0 +98,0 @@ * _0.2.1_ Fix [bug #10](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/10)

@@ -64,9 +64,14 @@ /**

//lookup jsdoc
jsDoc = exec.lookup(grunt, jsDocNpmPath, ['node_modules/grunt-jsdoc/', jsDocPath]);
if(jsDocPath && grunt.file.exists(jsDocPath) && grunt.file.isFile(jsDocPath)){
//use the given jsdoc path if set
jsDoc = jsDocPath;
} else {
//lookup jsdoc
jsDoc = exec.lookup(grunt, jsDocNpmPath, ['node_modules/grunt-jsdoc/']);
}
//check if java is set
if(!javaHome){
grunt.log.error("JAVA_HOME is not set, but java is required by jsdoc to run.");
grunt.fail.warn('Wrong installation/environnement', errorCode.generic);
grunt.log.error("JAVA_HOME is not set. Jsdoc requires Java to run.");
} else {

@@ -73,0 +78,0 @@ grunt.log.debug("JAVA_HOME : " + javaHome);

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