File tree Expand file tree Collapse file tree
b2c-cli/test/commands/setup
b2c-tooling-sdk/src/operations/mrt Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ import SetupConfig from '../../../src/commands/setup/config.js';
1111import { isolateConfig , restoreConfig } from '@salesforce/b2c-tooling-sdk/test-utils' ;
1212import type { ConfigSourceInfo , NormalizedConfig } from '@salesforce/b2c-tooling-sdk/config' ;
1313
14- /* eslint-disable @typescript-eslint/no-explicit-any */
15-
1614function stubCommandConfigAndLogger ( command : any ) : void {
1715 Object . defineProperty ( command , 'config' , {
1816 value : {
Original file line number Diff line number Diff line change @@ -196,6 +196,10 @@ export async function uploadBundle(
196196
197197 const buildData = data as unknown as BuildPushResponse ;
198198
199+ buildData . warnings . forEach ( ( warning : string ) => {
200+ logger . warn ( warning ) ;
201+ } ) ;
202+
199203 return {
200204 bundleId : buildData . bundle_id ,
201205 projectSlug,
You can’t perform that action at this time.
0 commit comments