@kithinji/pod 1.0.4 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kithinji/pod",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "pod": "./dist/main.js"
@@ -24,7 +24,7 @@ export function addNew(name: string) {
24
24
  name: "client",
25
25
  files: [
26
26
  { name: "index.html", content: genIndexHtml(name) },
27
- { name: "client.ts", content: genClientTs() },
27
+ { name: "client.tsx", content: genClientTsx() },
28
28
  ],
29
29
  },
30
30
  ],
@@ -146,7 +146,7 @@ function genIndexHtml(name: string) {
146
146
  `;
147
147
  }
148
148
 
149
- function genClientTs() {
149
+ function genClientTsx() {
150
150
  return `"use interactive";
151
151
 
152
152
  import {
package/src/main.ts CHANGED
@@ -28,7 +28,7 @@ import { dockerize } from "./docker";
28
28
 
29
29
  const program = new Command();
30
30
 
31
- program.name("pod").description("Pod cli tool").version("1.0.4");
31
+ program.name("pod").description("Pod cli tool").version("1.0.5");
32
32
 
33
33
  program
34
34
  .command("new <name>")