Skip to content

Commit

Permalink
Merge pull request #41 from fullstackedorg/v0.4.0
Browse files Browse the repository at this point in the history
V0.4.0
  • Loading branch information
cplepage authored Mar 29, 2024
2 parents 8f9f145 + 50d8384 commit 8b9e6dd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"ws": "^8.16.0",
"xterm": "^5.3.0"
}
}
}
2 changes: 1 addition & 1 deletion platform/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
"esbuild": "^0.20.2",
"tar": "^6.2.1"
}
}
}
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 @@ -324,7 +324,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
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 @@ -364,7 +364,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
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
2 changes: 1 addition & 1 deletion platform/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
"mime": "^4.0.1",
"ws": "^8.16.0"
}
}
}
2 changes: 1 addition & 1 deletion platform/node/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export async function merge(
entryPoint: string,
cacheDirectory: string
) {
const mergedContent = `${await fs.promises.readFile(baseFile)}\nimport("${entryPoint}");`;
const mergedContent = `${await fs.promises.readFile(baseFile)}\nimport("${entryPoint.split("\\").join("/")}");`;
await fs.promises.mkdir(cacheDirectory, { recursive: true });
const tmpFile = `${cacheDirectory}/tmp-${Date.now()}.js`;
await fs.promises.writeFile(tmpFile, mergedContent);
Expand Down

0 comments on commit 8b9e6dd

Please sign in to comment.