Skip to content

Commit

Permalink
fix jsdoc type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
claytercek committed Sep 12, 2024
1 parent caeea4a commit a35abe0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/launchpad/lib/launchpad-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* @typedef LaunchpadOptions Combined options to initialize Launchpad.
* @property {import("@bluecadet/launchpad-content").ContentOptions} [content]
* @property {import("@bluecadet/launchpad-monitor").MonitorOptions} [monitor]
* @property {import("./command-center").CommandOptions} [commands]
* @property {import("./command-hooks").HookMapping} [hooks]
* @property {import("@bluecadet/launchpad-utils/lib/log-manager").LogOptions} [logging]
* @property {import("./command-center.js").CommandOptions} [commands]
* @property {import("./command-hooks.js").HookMapping} [hooks]
* @property {import("@bluecadet/launchpad-utils/lib/log-manager.js").LogOptions} [logging]
* @property {boolean} [shutdownOnExit] Will listen for exit events. Defaults to 'true'
*/

Expand Down
2 changes: 1 addition & 1 deletion packages/utils/lib/exec-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { exec } from 'child_process';
* Executes a scripts and pipes output and error to a logger
* @param {string} script
* @param {string} [cwd]
* @param {import("./log-manager").Logger | Console} logger
* @param {import("./log-manager.js").Logger | Console} logger
* @returns {Promise<number | null>} A promise with the exit code passed on close
*/
export const execScript = async (script, cwd, logger = console) => {
Expand Down

0 comments on commit a35abe0

Please sign in to comment.