tsc-app 3.1.2 → 3.1.4

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -16,4 +16,4 @@ A minimal and fast **TypeScript project generator** — spin up a ready-to-use T
16
16
 
17
17
  ### 1. Create a new project
18
18
  ```bash
19
- npx ts-app my-app
19
+ npx tsc-app my-app
package/index.js CHANGED
@@ -61,5 +61,5 @@ fs.writeFileSync("package.json", JSON.stringify(pkg, null, 2));
61
61
 
62
62
  console.log("Done!");
63
63
  console.log(`cd ${projectName}`);
64
- console.log(`npm run start`);
64
+ console.log(`npm build`);
65
65
  console.log("npm run serve");
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "tsc-app",
3
- "version": "3.1.2",
3
+ "version": "3.1.4",
4
4
  "description": "Quick TypeScript project initializer",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "init-ts-app": "index.js"
7
+ "tsc-app": "index.js"
8
8
  },
9
9
  "license": "MIT",
10
10
  "type": "commonjs"