File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ async function loadExtConfigTS(
1919 const extConfigObject = requireTS ( extConfigFilePath ) as any ;
2020 return extConfigObject . default ?? extConfigObject ;
2121 } catch ( e ) {
22- console . warn ( 'Unable to load Capacitor typescript config file' , e ) ;
22+ console . warn ( 'Unable to load Trapeze typescript config file' , e ) ;
2323 return null ;
2424 }
2525}
@@ -32,7 +32,7 @@ async function loadExtConfigJS(
3232 try {
3333 return require ( extConfigFilePath ) ;
3434 } catch ( e ) {
35- console . warn ( 'Unable to load Capacitor typescript config file' , e ) ;
35+ console . warn ( 'Unable to load Trapeze typescript config file' , e ) ;
3636 return null ;
3737 // fatal(`Parsing ${c.strong(extConfigName)} failed.`, e as Error);
3838 }
@@ -68,15 +68,15 @@ export async function loadExtConfig(
6868 encoding : 'utf-8' ,
6969 } ) ) as MobileProjectConfig ;
7070 } catch ( e ) {
71- console . warn ( 'Unable to parse Capacitor JSON config file' , e as Error ) ;
71+ console . warn ( 'Unable to parse Trapeze JSON config file' , e as Error ) ;
7272 return null ;
7373 }
7474
7575 return json ;
7676 }
7777
7878 console . warn (
79- 'Unable to find or parse the Capacitor project config file. Using defaults' ,
79+ 'Unable to find or parse the Trapeze project config file. Using defaults' ,
8080 ) ;
8181
8282 return null ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const defaultInfoPlist = `
3232 so I've tried to accurately map what it expects. */
3333
3434/**
35- * An instance of an IosProject in a Capacitor project
35+ * An instance of an IosProject in a mobile project
3636 */
3737export class IosProject {
3838 private pbxProject : IosPbxProject | null = null ;
You can’t perform that action at this time.
0 commit comments