milkio 0.2.1 → 0.2.3

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/c.ts CHANGED
@@ -25,7 +25,7 @@ const commands = {
25
25
  },
26
26
  async EAR(commandBase64ed: string) {
27
27
  try {
28
- await $`clear`;
28
+ console.clear();
29
29
  } catch (e) {}
30
30
  const command = Buffer.from(commandBase64ed, "base64").toString("utf-8");
31
31
  console.log("\x1B[2m%s\x1B[0m", `$ ${command}`);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "milkio",
3
3
  "type": "module",
4
4
  "module": "index.ts",
5
- "version": "0.2.1",
5
+ "version": "0.2.3",
6
6
  "peerDependencies": {
7
7
  "typescript": "^5.4.2"
8
8
  },
@@ -246,6 +246,7 @@ export default async () => {
246
246
  minify: true,
247
247
  });
248
248
  await copyFile(join(cwd(), "src", "fail-code.ts"), join(cwd(), "packages", "client", "project", "src", "fail-code.ts"));
249
+ await $`bun i`.cwd(join(cwd(), "packages", "client"));
249
250
  console.timeEnd(`Client Stage`);
250
251
  console.log(``);
251
252