Upgrade to jsdoc 3.3.
This commit is contained in:
+1
-6
@@ -1,10 +1,5 @@
|
|||||||
before_install:
|
before_install:
|
||||||
- "sudo pip install -r requirements.txt"
|
- "sudo pip install -r requirements.txt"
|
||||||
- "git clone --depth=50 https://github.com/jsdoc3/jsdoc build/jsdoc"
|
|
||||||
- "cd build/jsdoc"
|
|
||||||
- "git fetch origin refs/tags/v3.2.2:refs/tags/v3.2.2"
|
|
||||||
- "git checkout tags/v3.2.2"
|
|
||||||
- "cd ../.."
|
|
||||||
- "npm install"
|
- "npm install"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
@@ -13,4 +8,4 @@ before_script:
|
|||||||
- "rm src/ol/renderer/webgl/*shader.js"
|
- "rm src/ol/renderer/webgl/*shader.js"
|
||||||
- "sleep 3"
|
- "sleep 3"
|
||||||
|
|
||||||
script: "./build.py JSDOC=build/jsdoc/jsdoc integration-test"
|
script: "./build.py integration-test"
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"plugins/markdown",
|
"node_modules/jsdoc/plugins/markdown",
|
||||||
"apidoc/plugins/inheritdoc",
|
"apidoc/plugins/inheritdoc",
|
||||||
"apidoc/plugins/exports",
|
"apidoc/plugins/exports",
|
||||||
"apidoc/plugins/todo",
|
"apidoc/plugins/todo",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
* TODO: Remove this hack when https://github.com/jsdoc3/jsdoc/issues/53
|
* TODO: Remove this hack when https://github.com/jsdoc3/jsdoc/issues/53
|
||||||
* is addressed.
|
* is addressed.
|
||||||
*/
|
*/
|
||||||
exports.nodeVisitor = {
|
exports.astNodeVisitor = {
|
||||||
|
|
||||||
visitNode: function(node, e, parser, currentSourceName) {
|
visitNode: function(node, e, parser, currentSourceName) {
|
||||||
if (/@(inheritDoc)(\n|\r)/.test(e.comment)) {
|
if (/@(inheritDoc)(\n|\r)/.test(e.comment)) {
|
||||||
|
|||||||
+47
-47
@@ -1,7 +1,7 @@
|
|||||||
/*global env: true */
|
/*global env: true */
|
||||||
var template = require('jsdoc/template'),
|
var template = require('jsdoc/template'),
|
||||||
fs = require('fs'),
|
fs = require('jsdoc/fs'),
|
||||||
path = require('path'),
|
path = require('jsdoc/path'),
|
||||||
taffy = require('taffydb').taffy,
|
taffy = require('taffydb').taffy,
|
||||||
helper = require('jsdoc/util/templateHelper'),
|
helper = require('jsdoc/util/templateHelper'),
|
||||||
scopeToPunc = helper.scopeToPunc,
|
scopeToPunc = helper.scopeToPunc,
|
||||||
@@ -29,48 +29,48 @@ var htmlsafe = helper.htmlsafe;
|
|||||||
|
|
||||||
function hashToLink(doclet, hash) {
|
function hashToLink(doclet, hash) {
|
||||||
if ( !/^(#.+)/.test(hash) ) { return hash; }
|
if ( !/^(#.+)/.test(hash) ) { return hash; }
|
||||||
|
|
||||||
var url = helper.createLink(doclet);
|
var url = helper.createLink(doclet);
|
||||||
|
|
||||||
url = url.replace(/(#.+|$)/, hash);
|
url = url.replace(/(#.+|$)/, hash);
|
||||||
return '<a href="' + url + '">' + hash + '</a>';
|
return '<a href="' + url + '">' + hash + '</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSignatureParams(f) {
|
function addSignatureParams(f) {
|
||||||
var params = helper.getSignatureParams(f, 'optional');
|
var params = helper.getSignatureParams(f, 'optional');
|
||||||
|
|
||||||
f.signature = (f.signature || '') + '('+params.join(', ')+')';
|
f.signature = (f.signature || '') + '('+params.join(', ')+')';
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSignatureReturns(f) {
|
function addSignatureReturns(f) {
|
||||||
var returnTypes = helper.getSignatureReturns(f);
|
var returnTypes = helper.getSignatureReturns(f);
|
||||||
|
|
||||||
f.signature = '<span class="signature">'+(f.signature || '') + '</span>' + '<span class="type-signature">'+(returnTypes.length? ' → {'+returnTypes.join('|')+'}' : '')+'</span>';
|
f.signature = '<span class="signature">'+(f.signature || '') + '</span>' + '<span class="type-signature">'+(returnTypes.length? ' → {'+returnTypes.join('|')+'}' : '')+'</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSignatureTypes(f) {
|
function addSignatureTypes(f) {
|
||||||
var types = helper.getSignatureTypes(f);
|
var types = helper.getSignatureTypes(f);
|
||||||
|
|
||||||
f.signature = (f.signature || '') + '<span class="type-signature">'+(types.length? ' :'+types.join('|') : '')+'</span>';
|
f.signature = (f.signature || '') + '<span class="type-signature">'+(types.length? ' :'+types.join('|') : '')+'</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function addAttribs(f) {
|
function addAttribs(f) {
|
||||||
var attribs = helper.getAttribs(f);
|
var attribs = helper.getAttribs(f);
|
||||||
|
|
||||||
f.attribs = '<span class="type-signature">'+htmlsafe(attribs.length? '<'+attribs.join(', ')+'> ' : '')+'</span>';
|
f.attribs = '<span class="type-signature">'+htmlsafe(attribs.length? '<'+attribs.join(', ')+'> ' : '')+'</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function generate(title, docs, filename) {
|
function generate(title, docs, filename) {
|
||||||
var docData = {
|
var docData = {
|
||||||
title: title,
|
title: title,
|
||||||
docs: docs
|
docs: docs
|
||||||
};
|
};
|
||||||
|
|
||||||
var outpath = path.join(outdir, filename),
|
var outpath = path.join(outdir, filename),
|
||||||
html = view.render('container.tmpl', docData);
|
html = view.render('container.tmpl', docData);
|
||||||
|
|
||||||
html = helper.resolveLinks(html); // turn {@link foo} into <a href="foodoc.html">foo</a>
|
html = helper.resolveLinks(html); // turn {@link foo} into <a href="foodoc.html">foo</a>
|
||||||
|
|
||||||
fs.writeFileSync(outpath, html, 'utf8');
|
fs.writeFileSync(outpath, html, 'utf8');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,7 +89,7 @@ function generate(title, docs, filename) {
|
|||||||
function buildNav(members) {
|
function buildNav(members) {
|
||||||
var nav = '<h2><a href="index.html">Index</a></h2>',
|
var nav = '<h2><a href="index.html">Index</a></h2>',
|
||||||
seen = {};
|
seen = {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sorts elements by their qualified names (property longname).
|
* Sorts elements by their qualified names (property longname).
|
||||||
* See https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/sort
|
* See https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/sort
|
||||||
@@ -115,10 +115,10 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[m.longname] = true;
|
seen[m.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (members.externals.length) {
|
if (members.externals.length) {
|
||||||
nav += '<h3>Externals</h3><ul>';
|
nav += '<h3>Externals</h3><ul>';
|
||||||
members.externals.sort(byLongName).forEach(function(e) {
|
members.externals.sort(byLongName).forEach(function(e) {
|
||||||
@@ -127,7 +127,7 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[e.longname] = true;
|
seen[e.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -149,10 +149,10 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[c.longname] = true;
|
seen[c.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (members.namespaces.length) {
|
if (members.namespaces.length) {
|
||||||
nav += '<h3>Namespaces</h3><ul>';
|
nav += '<h3>Namespaces</h3><ul>';
|
||||||
members.namespaces.sort(byLongName).forEach(function(n) {
|
members.namespaces.sort(byLongName).forEach(function(n) {
|
||||||
@@ -161,10 +161,10 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[n.longname] = true;
|
seen[n.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (members.mixins.length) {
|
if (members.mixins.length) {
|
||||||
nav += '<h3>Mixins</h3><ul>';
|
nav += '<h3>Mixins</h3><ul>';
|
||||||
members.mixins.sort(byLongName).forEach(function(m) {
|
members.mixins.sort(byLongName).forEach(function(m) {
|
||||||
@@ -173,7 +173,7 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[m.longname] = true;
|
seen[m.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -182,10 +182,10 @@ function buildNav(members) {
|
|||||||
members.tutorials.sort(byLongName).forEach(function(t) {
|
members.tutorials.sort(byLongName).forEach(function(t) {
|
||||||
nav += '<li>'+tutoriallink(t.name)+'</li>';
|
nav += '<li>'+tutoriallink(t.name)+'</li>';
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (members.globals.length) {
|
if (members.globals.length) {
|
||||||
nav += '<h3>Global</h3><ul>';
|
nav += '<h3>Global</h3><ul>';
|
||||||
members.globals.sort(byLongName).forEach(function(g) {
|
members.globals.sort(byLongName).forEach(function(g) {
|
||||||
@@ -194,7 +194,7 @@ function buildNav(members) {
|
|||||||
}
|
}
|
||||||
seen[g.longname] = true;
|
seen[g.longname] = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
nav += '</ul>';
|
nav += '</ul>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -212,7 +212,7 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
|
|
||||||
var templatePath = opts.template;
|
var templatePath = opts.template;
|
||||||
view = new template.Template(templatePath + '/tmpl');
|
view = new template.Template(templatePath + '/tmpl');
|
||||||
|
|
||||||
// set up templating
|
// set up templating
|
||||||
view.layout = 'layout.tmpl';
|
view.layout = 'layout.tmpl';
|
||||||
|
|
||||||
@@ -224,16 +224,16 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
|
|
||||||
data().each(function(doclet) {
|
data().each(function(doclet) {
|
||||||
doclet.attribs = '';
|
doclet.attribs = '';
|
||||||
|
|
||||||
if (doclet.examples) {
|
if (doclet.examples) {
|
||||||
doclet.examples = doclet.examples.map(function(example) {
|
doclet.examples = doclet.examples.map(function(example) {
|
||||||
var caption, code;
|
var caption, code;
|
||||||
|
|
||||||
if (example.match(/^\s*<caption>([\s\S]+?)<\/caption>(\s*[\n\r])([\s\S]+)$/i)) {
|
if (example.match(/^\s*<caption>([\s\S]+?)<\/caption>(\s*[\n\r])([\s\S]+)$/i)) {
|
||||||
caption = RegExp.$1;
|
caption = RegExp.$1;
|
||||||
code = RegExp.$3;
|
code = RegExp.$3;
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
caption: caption || '',
|
caption: caption || '',
|
||||||
code: code || example
|
code: code || example
|
||||||
@@ -246,7 +246,7 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// update outdir if necessary, then create outdir
|
// update outdir if necessary, then create outdir
|
||||||
var packageInfo = ( find({kind: 'package'}) || [] ) [0];
|
var packageInfo = ( find({kind: 'package'}) || [] ) [0];
|
||||||
if (packageInfo && packageInfo.name) {
|
if (packageInfo && packageInfo.name) {
|
||||||
@@ -257,18 +257,18 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
// copy static files to outdir
|
// copy static files to outdir
|
||||||
var fromDir = path.join(templatePath, 'static'),
|
var fromDir = path.join(templatePath, 'static'),
|
||||||
staticFiles = fs.ls(fromDir, 3);
|
staticFiles = fs.ls(fromDir, 3);
|
||||||
|
|
||||||
staticFiles.forEach(function(fileName) {
|
staticFiles.forEach(function(fileName) {
|
||||||
var toDir = fs.toDir( fileName.replace(fromDir, outdir) );
|
var toDir = fs.toDir( fileName.replace(fromDir, outdir) );
|
||||||
fs.mkPath(toDir);
|
fs.mkPath(toDir);
|
||||||
fs.copyFileSync(fileName, toDir);
|
fs.copyFileSync(fileName, toDir);
|
||||||
});
|
});
|
||||||
|
|
||||||
data().each(function(doclet) {
|
data().each(function(doclet) {
|
||||||
var url = helper.createLink(doclet);
|
var url = helper.createLink(doclet);
|
||||||
helper.registerLink(doclet.longname, url);
|
helper.registerLink(doclet.longname, url);
|
||||||
});
|
});
|
||||||
|
|
||||||
data().each(function(doclet) {
|
data().each(function(doclet) {
|
||||||
var url = helper.longnameToUrl[doclet.longname];
|
var url = helper.longnameToUrl[doclet.longname];
|
||||||
|
|
||||||
@@ -278,32 +278,32 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
else {
|
else {
|
||||||
doclet.id = doclet.name;
|
doclet.id = doclet.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (doclet.kind === 'function' || doclet.kind === 'class') {
|
if (doclet.kind === 'function' || doclet.kind === 'class') {
|
||||||
addSignatureParams(doclet);
|
addSignatureParams(doclet);
|
||||||
addSignatureReturns(doclet);
|
addSignatureReturns(doclet);
|
||||||
addAttribs(doclet);
|
addAttribs(doclet);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// do this after the urls have all been generated
|
// do this after the urls have all been generated
|
||||||
data().each(function(doclet) {
|
data().each(function(doclet) {
|
||||||
doclet.ancestors = getAncestorLinks(doclet);
|
doclet.ancestors = getAncestorLinks(doclet);
|
||||||
|
|
||||||
doclet.signature = '';
|
doclet.signature = '';
|
||||||
|
|
||||||
if (doclet.kind === 'member') {
|
if (doclet.kind === 'member') {
|
||||||
addSignatureTypes(doclet);
|
addSignatureTypes(doclet);
|
||||||
addAttribs(doclet);
|
addAttribs(doclet);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (doclet.kind === 'constant') {
|
if (doclet.kind === 'constant') {
|
||||||
addSignatureTypes(doclet);
|
addSignatureTypes(doclet);
|
||||||
addAttribs(doclet);
|
addAttribs(doclet);
|
||||||
doclet.kind = 'member';
|
doclet.kind = 'member';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var members = helper.getMembers(data);
|
var members = helper.getMembers(data);
|
||||||
members.tutorials = tutorials.children;
|
members.tutorials = tutorials.children;
|
||||||
|
|
||||||
@@ -324,25 +324,25 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
if (classes.length) {
|
if (classes.length) {
|
||||||
generate('Class: ' + classes[0].longname, classes, helper.longnameToUrl[longname]);
|
generate('Class: ' + classes[0].longname, classes, helper.longnameToUrl[longname]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var modules = taffy(members.modules);
|
var modules = taffy(members.modules);
|
||||||
modules = helper.find(modules, {longname: longname});
|
modules = helper.find(modules, {longname: longname});
|
||||||
if (modules.length) {
|
if (modules.length) {
|
||||||
generate('Module: ' + modules[0].longname, modules, helper.longnameToUrl[longname]);
|
generate('Module: ' + modules[0].longname, modules, helper.longnameToUrl[longname]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var namespaces = taffy(members.namespaces);
|
var namespaces = taffy(members.namespaces);
|
||||||
namespaces = helper.find(namespaces, {longname: longname});
|
namespaces = helper.find(namespaces, {longname: longname});
|
||||||
if (namespaces.length) {
|
if (namespaces.length) {
|
||||||
generate('Namespace: ' + namespaces[0].longname, namespaces, helper.longnameToUrl[longname]);
|
generate('Namespace: ' + namespaces[0].longname, namespaces, helper.longnameToUrl[longname]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var mixins = taffy(members.mixins);
|
var mixins = taffy(members.mixins);
|
||||||
mixins = helper.find(mixins, {longname: longname});
|
mixins = helper.find(mixins, {longname: longname});
|
||||||
if (mixins.length) {
|
if (mixins.length) {
|
||||||
generate('Mixin: ' + mixins[0].longname, mixins, helper.longnameToUrl[longname]);
|
generate('Mixin: ' + mixins[0].longname, mixins, helper.longnameToUrl[longname]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var externals = taffy(members.externals);
|
var externals = taffy(members.externals);
|
||||||
externals = helper.find(externals, {longname: longname});
|
externals = helper.find(externals, {longname: longname});
|
||||||
if (externals.length) {
|
if (externals.length) {
|
||||||
@@ -352,7 +352,7 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (members.globals.length) { generate('Global', members.globals, 'global.html'); }
|
if (members.globals.length) { generate('Global', members.globals, 'global.html'); }
|
||||||
|
|
||||||
// index page displays information from package.json and lists files
|
// index page displays information from package.json and lists files
|
||||||
var files = find({kind: 'file'}),
|
var files = find({kind: 'file'}),
|
||||||
packages = find({kind: 'package'});
|
packages = find({kind: 'package'});
|
||||||
@@ -362,7 +362,7 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
[{kind: 'mainpage', readme: opts.readme, longname: (opts.mainpagetitle) ? opts.mainpagetitle : 'Main Page'}]
|
[{kind: 'mainpage', readme: opts.readme, longname: (opts.mainpagetitle) ? opts.mainpagetitle : 'Main Page'}]
|
||||||
).concat(files),
|
).concat(files),
|
||||||
'index.html');
|
'index.html');
|
||||||
|
|
||||||
// TODO: move the tutorial functions to templateHelper.js
|
// TODO: move the tutorial functions to templateHelper.js
|
||||||
function generateTutorial(title, tutorial, filename) {
|
function generateTutorial(title, tutorial, filename) {
|
||||||
var tutorialData = {
|
var tutorialData = {
|
||||||
@@ -371,16 +371,16 @@ exports.publish = function(taffyData, opts, tutorials) {
|
|||||||
content: tutorial.parse(),
|
content: tutorial.parse(),
|
||||||
children: tutorial.children
|
children: tutorial.children
|
||||||
};
|
};
|
||||||
|
|
||||||
var tutorialPath = path.join(outdir, filename),
|
var tutorialPath = path.join(outdir, filename),
|
||||||
html = view.render('tutorial.tmpl', tutorialData);
|
html = view.render('tutorial.tmpl', tutorialData);
|
||||||
|
|
||||||
// yes, you can use {@link} in tutorials too!
|
// yes, you can use {@link} in tutorials too!
|
||||||
html = helper.resolveLinks(html); // turn {@link foo} into <a href="foodoc.html">foo</a>
|
html = helper.resolveLinks(html); // turn {@link foo} into <a href="foodoc.html">foo</a>
|
||||||
|
|
||||||
fs.writeFileSync(tutorialPath, html, 'utf8');
|
fs.writeFileSync(tutorialPath, html, 'utf8');
|
||||||
}
|
}
|
||||||
|
|
||||||
// tutorials can have only one parent so there is no risk for loops
|
// tutorials can have only one parent so there is no risk for loops
|
||||||
function saveChildren(node) {
|
function saveChildren(node) {
|
||||||
node.children.forEach(function(child) {
|
node.children.forEach(function(child) {
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ if sys.platform == 'win32':
|
|||||||
'GJSLINT': 'gjslint.exe',
|
'GJSLINT': 'gjslint.exe',
|
||||||
'JAVA': 'java.exe',
|
'JAVA': 'java.exe',
|
||||||
'JAR': 'jar.exe',
|
'JAR': 'jar.exe',
|
||||||
'JSDOC': 'jsdoc.cmd',
|
'JSDOC': './node_modules/.bin/jsdoc',
|
||||||
'JSHINT': './node_modules/.bin/jshint',
|
'JSHINT': './node_modules/.bin/jshint',
|
||||||
'PYTHON': 'python.exe',
|
'PYTHON': 'python.exe',
|
||||||
'PHANTOMJS': 'phantomjs.cmd'
|
'PHANTOMJS': 'phantomjs.cmd'
|
||||||
@@ -75,7 +75,7 @@ else:
|
|||||||
variables.JSHINT = './node_modules/.bin/jshint'
|
variables.JSHINT = './node_modules/.bin/jshint'
|
||||||
variables.JAVA = 'java'
|
variables.JAVA = 'java'
|
||||||
variables.JAR = 'jar'
|
variables.JAR = 'jar'
|
||||||
variables.JSDOC = 'jsdoc'
|
variables.JSDOC = './node_modules/.bin/jsdoc'
|
||||||
variables.PYTHON = 'python'
|
variables.PYTHON = 'python'
|
||||||
variables.PHANTOMJS = 'phantomjs'
|
variables.PHANTOMJS = 'phantomjs'
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -18,6 +18,7 @@
|
|||||||
"closure-util": "~0.9.0",
|
"closure-util": "~0.9.0",
|
||||||
"async": "~0.2.10",
|
"async": "~0.2.10",
|
||||||
"htmlparser2": "~3.7.1",
|
"htmlparser2": "~3.7.1",
|
||||||
"jshint": "~2.4.4"
|
"jshint": "~2.4.4",
|
||||||
|
"jsdoc": "^3.3.0-alpha5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user