@bilt/build-with-configuration
Advanced tools
Comparing version 9.0.5 to 9.0.6
{ | ||
"name": "@bilt/build-with-configuration", | ||
"version": "9.0.5", | ||
"version": "9.0.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -12,3 +12,3 @@ import {executeStep, stepInfo, validateStep} from './execute-step.js' | ||
* @param {string} directoryToExecuteIn | ||
* @param {{[x: string]: boolean|string}} buildOptions | ||
* @param {{[x: string]: boolean|string|undefined}} buildOptions | ||
* @param {{[x: string]: any}} javascriptOptionsParameter | ||
@@ -97,3 +97,3 @@ * @returns {AsyncGenerator<import('./execute-step').StepInfo, void, void>} | ||
* @param {string} directoryToExecuteIn | ||
* @param {Record<string, boolean|string>} buildOptions | ||
* @param {Record<string, boolean|string|undefined>} buildOptions | ||
* @param {Record<string, any>} javascriptOptionsParameter | ||
@@ -118,3 +118,3 @@ * @returns {AsyncGenerator<import('./execute-step').StepInfo>} | ||
* @param {string[]} enableOptions | ||
* @param {Record<string, boolean|string>} buildOptions | ||
* @param {Record<string, boolean|string|undefined>} buildOptions | ||
*/ | ||
@@ -121,0 +121,0 @@ function isStepEnabled(enableOptions, buildOptions) { |
@@ -30,3 +30,3 @@ import module from 'module' | ||
* @param {string} cwd | ||
* @param {Record<string, boolean|string>} buildOptions | ||
* @param {Record<string, boolean|string|undefined>} buildOptions | ||
* @param {Record<string, any>} javascriptOptionsParameter | ||
@@ -33,0 +33,0 @@ * @returns {Promise<void>} |
@@ -9,3 +9,3 @@ /** | ||
* @param {string} directoryToExecuteIn | ||
* @param {{[x: string]: boolean|string}} buildOptions | ||
* @param {{[x: string]: boolean|string|undefined}} buildOptions | ||
* @param {{[x: string]: any}} javascriptOptionsParameter | ||
@@ -15,3 +15,3 @@ * @returns {AsyncGenerator<import('./execute-step').StepInfo, void, void>} | ||
export function executeJob(jobConfiguration: Job, phase: 'before' | 'during' | 'after', directoryToExecuteIn: string, buildOptions: { | ||
[x: string]: string | boolean; | ||
[x: string]: string | boolean | undefined; | ||
}, javascriptOptionsParameter: { | ||
@@ -18,0 +18,0 @@ [x: string]: any; |
@@ -16,7 +16,7 @@ /** | ||
* @param {string} cwd | ||
* @param {Record<string, boolean|string>} buildOptions | ||
* @param {Record<string, boolean|string|undefined>} buildOptions | ||
* @param {Record<string, any>} javascriptOptionsParameter | ||
* @returns {Promise<void>} | ||
*/ | ||
export function executeStep(step: import('./types').Step, cwd: string, buildOptions: Record<string, boolean | string>, javascriptOptionsParameter: Record<string, any>): Promise<void>; | ||
export function executeStep(step: import('./types').Step, cwd: string, buildOptions: Record<string, boolean | string | undefined>, javascriptOptionsParameter: Record<string, any>): Promise<void>; | ||
/** | ||
@@ -23,0 +23,0 @@ * @param {import('./types').Step} step |
Sorry, the diff of this file is not supported yet
20993