Skip to content

Commit

Permalink
Fix JSDoc @param in mkPrototype()
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Feb 28, 2024
1 parent 070c9b7 commit 24534b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion __tests__/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,12 @@ function mkdtempSync () {
* @param {string} prototypePath
* @param {Object} [options]
* @param {string} [options.kitPath] - Path to the kit to use when creating prototype, if not provided uses mkReleaseArchive
* @param {bool} [options.allowTracking] - If undefined no usage-data-config.json is created,
* @param {boolean} [options.overwrite] - Allow existing prototype to be overwritten (optional)
* @param {boolean} [options.allowTracking] - If undefined no usage-data-config.json is created,
* if true a usage-data-config.json is created allowing tracking,
* if false a usage-data-config.json is crated disallowing tracking
* @param {boolean} [options.npmInstallLinks] - Set value for npm config install-links (optional)
* @param {string} [options.commandLineParameters] - Command line parameters (optional)
* @returns {Promise<void>}
*/
async function mkPrototype (prototypePath, {
Expand Down

0 comments on commit 24534b1

Please sign in to comment.