Skip to content

Commit 63f6bdd

Browse files
committed
More cleanup
1 parent 423b803 commit 63f6bdd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/common/trapeze.config.ts

Whitespace-only changes.

packages/configure/src/app-config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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;
0 Bytes
Binary file not shown.

packages/project/src/ios/project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*/
3737
export class IosProject {
3838
private pbxProject: IosPbxProject | null = null;

0 commit comments

Comments
 (0)