@apps-in-toss/web-framework 0.0.0-dev.1739330319128 → 0.0.0-dev.1739332271671

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.cjs CHANGED
@@ -357,7 +357,7 @@ var DeployCommand = class extends import_clipanion2.Command {
357
357
  }
358
358
  ]);
359
359
  if (deploymentId) {
360
- p.note(`Deployment ID: ${import_picocolors2.default.underline(import_picocolors2.default.green(deploymentId))}`);
360
+ p.note(import_picocolors2.default.underline(import_picocolors2.default.green(`intoss://${appIdentifier}?_deploymentId=${deploymentId}`)));
361
361
  }
362
362
  } catch (error) {
363
363
  if (error instanceof Error) {
@@ -442,6 +442,7 @@ var import_path5 = __toESM(require("path"), 1);
442
442
  var p2 = __toESM(require("@clack/prompts"), 1);
443
443
  var import_clipanion4 = require("clipanion");
444
444
  var import_es_toolkit = require("es-toolkit");
445
+ var import_execa3 = require("execa");
445
446
  var import_yaml = __toESM(require("yaml"), 1);
446
447
 
447
448
  // src/InitCommand/templates/index.tsx
@@ -567,8 +568,7 @@ var InitCommand = class extends import_clipanion4.Command {
567
568
  p2.log.info(".yarnrc.yml \uD30C\uC77C\uC774 \uC5C6\uC5B4 \uC0C8\uB85C \uC0DD\uC131\uD569\uB2C8\uB2E4.");
568
569
  }
569
570
  p2.log.step(".yarnrc.yml \uD30C\uC77C\uC744 \uC5C5\uB370\uC774\uD2B8\uD558\uB294 \uC911...");
570
- yarnrc.packageExtensions = {
571
- ...yarnrc.packageExtensions,
571
+ yarnrc.packageExtensions = (0, import_es_toolkit.merge)(yarnrc.packageExtensions, {
572
572
  "@react-native-community/cli-debugger-ui@*": {
573
573
  dependencies: {
574
574
  "@babel/runtime": "^7"
@@ -585,15 +585,19 @@ var InitCommand = class extends import_clipanion4.Command {
585
585
  "@babel/runtime": "^7"
586
586
  }
587
587
  }
588
- };
588
+ });
589
589
  await import_fs4.default.promises.writeFile(yarnrcPath, import_yaml.default.stringify(yarnrc), { encoding: "utf-8" });
590
+ await (0, import_execa3.execa)("yarn", ["install"], {
591
+ cwd,
592
+ stdio: "inherit"
593
+ });
590
594
  }
591
595
  p2.outro("\u2728 \uCD08\uAE30\uD654\uAC00 \uC644\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!");
592
596
  }
593
597
  };
594
598
 
595
599
  // package.json
596
- var version = "0.0.0-dev.1739330319128";
600
+ var version = "0.0.0-dev.1739332271671";
597
601
 
598
602
  // src/cli.ts
599
603
  var cli = new import_clipanion5.Cli({
package/dist/cli.js CHANGED
@@ -306,7 +306,7 @@ var DeployCommand = class extends Command2 {
306
306
  }
307
307
  ]);
308
308
  if (deploymentId) {
309
- p.note(`Deployment ID: ${picocolors2.underline(picocolors2.green(deploymentId))}`);
309
+ p.note(picocolors2.underline(picocolors2.green(`intoss://${appIdentifier}?_deploymentId=${deploymentId}`)));
310
310
  }
311
311
  } catch (error) {
312
312
  if (error instanceof Error) {
@@ -390,7 +390,8 @@ import fs5 from "fs";
390
390
  import path5 from "path";
391
391
  import * as p2 from "@clack/prompts";
392
392
  import { Command as Command4 } from "clipanion";
393
- import { kebabCase } from "es-toolkit";
393
+ import { kebabCase, merge } from "es-toolkit";
394
+ import { execa as execa3 } from "execa";
394
395
  import yaml from "yaml";
395
396
 
396
397
  // src/InitCommand/templates/index.tsx
@@ -516,8 +517,7 @@ var InitCommand = class extends Command4 {
516
517
  p2.log.info(".yarnrc.yml \uD30C\uC77C\uC774 \uC5C6\uC5B4 \uC0C8\uB85C \uC0DD\uC131\uD569\uB2C8\uB2E4.");
517
518
  }
518
519
  p2.log.step(".yarnrc.yml \uD30C\uC77C\uC744 \uC5C5\uB370\uC774\uD2B8\uD558\uB294 \uC911...");
519
- yarnrc.packageExtensions = {
520
- ...yarnrc.packageExtensions,
520
+ yarnrc.packageExtensions = merge(yarnrc.packageExtensions, {
521
521
  "@react-native-community/cli-debugger-ui@*": {
522
522
  dependencies: {
523
523
  "@babel/runtime": "^7"
@@ -534,15 +534,19 @@ var InitCommand = class extends Command4 {
534
534
  "@babel/runtime": "^7"
535
535
  }
536
536
  }
537
- };
537
+ });
538
538
  await fs5.promises.writeFile(yarnrcPath, yaml.stringify(yarnrc), { encoding: "utf-8" });
539
+ await execa3("yarn", ["install"], {
540
+ cwd,
541
+ stdio: "inherit"
542
+ });
539
543
  }
540
544
  p2.outro("\u2728 \uCD08\uAE30\uD654\uAC00 \uC644\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!");
541
545
  }
542
546
  };
543
547
 
544
548
  // package.json
545
- var version = "0.0.0-dev.1739330319128";
549
+ var version = "0.0.0-dev.1739332271671";
546
550
 
547
551
  // src/cli.ts
548
552
  var cli = new Cli({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apps-in-toss/web-framework",
3
3
  "type": "module",
4
- "version": "0.0.0-dev.1739330319128",
4
+ "version": "0.0.0-dev.1739332271671",
5
5
  "description": "Web Framework for Apps In Toss",
6
6
  "scripts": {
7
7
  "prepack": "yarn build",
@@ -38,8 +38,8 @@
38
38
  "vitest": "^3.0.5"
39
39
  },
40
40
  "dependencies": {
41
- "@apps-in-toss/babel-plugin-json": "0.0.0-dev.1739330319128",
42
- "@apps-in-toss/framework": "0.0.0-dev.1739330319128",
41
+ "@apps-in-toss/babel-plugin-json": "0.0.0-dev.1739332271671",
42
+ "@apps-in-toss/framework": "0.0.0-dev.1739332271671",
43
43
  "@babel/core": "7.23.9",
44
44
  "@babel/plugin-proposal-class-properties": "^7.16.7",
45
45
  "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "bfaa657c992f76c579fc2bfebeb47c50ebc2b793"
76
+ "gitHead": "8561a5fd5f5e1ac87e1ee2705a7b20ba493ec9bd"
77
77
  }