@apps-in-toss/web-framework 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +4 -2
- package/package.json +7 -7
package/dist/cli/index.js
CHANGED
|
@@ -52274,7 +52274,7 @@ var require_package = __commonJS({
|
|
|
52274
52274
|
module.exports = {
|
|
52275
52275
|
name: "@apps-in-toss/web-framework",
|
|
52276
52276
|
type: "module",
|
|
52277
|
-
version: "1.14.
|
|
52277
|
+
version: "1.14.1",
|
|
52278
52278
|
description: "Web Framework for Apps In Toss",
|
|
52279
52279
|
scripts: {
|
|
52280
52280
|
typecheck: "tsc --noEmit",
|
|
@@ -65655,6 +65655,7 @@ function appsInTossCreateArtifact(deploymentId, buildOption) {
|
|
|
65655
65655
|
deploymentId,
|
|
65656
65656
|
sdkVersion: buildOption.sdkVersion,
|
|
65657
65657
|
isGame: buildOption.isGame,
|
|
65658
|
+
isWeb: buildOption.isWeb,
|
|
65658
65659
|
bundleFiles: buildResults.filter(isBuildSuccess).map(({ outfile, sourcemapOutfile, platform: platform2 }) => [
|
|
65659
65660
|
{
|
|
65660
65661
|
path: outfile,
|
|
@@ -65691,7 +65692,8 @@ function appsInTossWeb(deploymentId, options) {
|
|
|
65691
65692
|
const sdkVersion = getSdkVersion();
|
|
65692
65693
|
const buildOptions = {
|
|
65693
65694
|
sdkVersion,
|
|
65694
|
-
isGame: result.data.webViewProps?.type === "game"
|
|
65695
|
+
isGame: result.data.webViewProps?.type === "game",
|
|
65696
|
+
isWeb: true
|
|
65695
65697
|
};
|
|
65696
65698
|
return [
|
|
65697
65699
|
appsInTossAppJson(options),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.1",
|
|
5
5
|
"description": "Web Framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -87,12 +87,12 @@
|
|
|
87
87
|
"zod": "3.24.4"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@apps-in-toss/bridge-core": "1.14.
|
|
91
|
-
"@apps-in-toss/cli": "1.14.
|
|
92
|
-
"@apps-in-toss/framework": "1.14.
|
|
93
|
-
"@apps-in-toss/plugins": "1.14.
|
|
94
|
-
"@apps-in-toss/web-analytics": "1.14.
|
|
95
|
-
"@apps-in-toss/web-bridge": "1.14.
|
|
90
|
+
"@apps-in-toss/bridge-core": "1.14.1",
|
|
91
|
+
"@apps-in-toss/cli": "1.14.1",
|
|
92
|
+
"@apps-in-toss/framework": "1.14.1",
|
|
93
|
+
"@apps-in-toss/plugins": "1.14.1",
|
|
94
|
+
"@apps-in-toss/web-analytics": "1.14.1",
|
|
95
|
+
"@apps-in-toss/web-bridge": "1.14.1",
|
|
96
96
|
"@babel/core": "7.23.9",
|
|
97
97
|
"@granite-js/cli": "0.1.31",
|
|
98
98
|
"@granite-js/mpack": "0.1.31",
|