ts-init-template 1.0.5 → 1.0.7

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 (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-init-template",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "A TS project template for TS projects. This script will setup all the ts enviroment with 1 command. ",
5
5
  "main": "index.js",
6
6
  "author": "SigismundBT",
package/readme.md CHANGED
@@ -24,11 +24,14 @@ yarn init
24
24
  npx ts-init-template
25
25
  yarn build
26
26
  yarn start
27
+ ```
27
28
 
28
29
  ### 💡 With NPM
29
30
 
30
31
  ```bash
32
+
31
33
  npm init
32
34
  npx ts-init-template
33
35
  npm run build
34
36
  npm run start
37
+ ```