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

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
@@ -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
@@ -587,13 +588,17 @@ var InitCommand = class extends import_clipanion4.Command {
587
588
  }
588
589
  };
589
590
  await import_fs4.default.promises.writeFile(yarnrcPath, import_yaml.default.stringify(yarnrc), { encoding: "utf-8" });
591
+ await (0, import_execa3.execa)("yarn", ["install"], {
592
+ cwd,
593
+ stdio: "inherit"
594
+ });
590
595
  }
591
596
  p2.outro("\u2728 \uCD08\uAE30\uD654\uAC00 \uC644\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!");
592
597
  }
593
598
  };
594
599
 
595
600
  // package.json
596
- var version = "0.0.0-dev.1739330319128";
601
+ var version = "0.0.0-dev.1739330896562";
597
602
 
598
603
  // src/cli.ts
599
604
  var cli = new import_clipanion5.Cli({
package/dist/cli.js CHANGED
@@ -391,6 +391,7 @@ import path5 from "path";
391
391
  import * as p2 from "@clack/prompts";
392
392
  import { Command as Command4 } from "clipanion";
393
393
  import { kebabCase } 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
@@ -536,13 +537,17 @@ var InitCommand = class extends Command4 {
536
537
  }
537
538
  };
538
539
  await fs5.promises.writeFile(yarnrcPath, yaml.stringify(yarnrc), { encoding: "utf-8" });
540
+ await execa3("yarn", ["install"], {
541
+ cwd,
542
+ stdio: "inherit"
543
+ });
539
544
  }
540
545
  p2.outro("\u2728 \uCD08\uAE30\uD654\uAC00 \uC644\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4!");
541
546
  }
542
547
  };
543
548
 
544
549
  // package.json
545
- var version = "0.0.0-dev.1739330319128";
550
+ var version = "0.0.0-dev.1739330896562";
546
551
 
547
552
  // src/cli.ts
548
553
  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.1739330896562",
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.1739330896562",
42
+ "@apps-in-toss/framework": "0.0.0-dev.1739330896562",
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": "492ef7b26022c1f634cecd29594a52e69b93b5c8"
77
77
  }