Skip to content

Commit

Permalink
Merge pull request #55 from fullstackedorg/v0.6.0
Browse files Browse the repository at this point in the history
v0.6.0
  • Loading branch information
cplepage authored Jun 14, 2024
2 parents 727b82b + fc811e7 commit c7a6e24
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
18 changes: 9 additions & 9 deletions platform/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions platform/electron/src/esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ export const loadEsbuild = async (configDirectory: string) => {
? fs.readFileSync(versionFile).toString().trim()
: null;

console.log(installedVersion, esbuildVersion);

if (installedVersion?.trim() !== esbuildVersion?.trim()) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion platform/electron/src/instanceEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class InstanceEditor extends Instance {
this.adapter = initAdapterEditor(adapter, this, this.esbuild.module);

this.adapter.esbuild = {
check: () => !!this.esbuild,
check: () => !!this.esbuild.module,
install: () => {
const progressListener = (data: {
step: number;
Expand Down
4 changes: 2 additions & 2 deletions platform/ios/xcode/FullStacked.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = FullStacked/FullStacked.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_ASSET_PATHS = "\"FullStacked/Preview Content\"";
DEVELOPMENT_TEAM = QD7Y9DQ5V4;
ENABLE_PREVIEWS = YES;
Expand Down Expand Up @@ -543,7 +543,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = FullStacked/FullStacked.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_ASSET_PATHS = "\"FullStacked/Preview Content\"";
DEVELOPMENT_TEAM = QD7Y9DQ5V4;
ENABLE_PREVIEWS = YES;
Expand Down

0 comments on commit c7a6e24

Please sign in to comment.