ts-init-template 1.0.8 โ 1.0.10
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 +1 -1
- package/readme.md +33 -9
package/package.json
CHANGED
package/readme.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# ts-init-template
|
2
2
|
|
3
|
-
|
3
|
+
[](https://www.npmjs.com/package/ts-init-template)
|
4
|
+
|
5
|
+
> ๐งช A minimal CLI tool to instantly scaffold a clean TypeScript project with zero config.
|
4
6
|
|
5
7
|
---
|
6
8
|
|
@@ -14,26 +16,48 @@
|
|
14
16
|
|
15
17
|
---
|
16
18
|
|
17
|
-
## ๐ฆ
|
19
|
+
## ๐ฆ Quick Install
|
20
|
+
|
21
|
+
```
|
22
|
+
npx ts-init-template
|
23
|
+
```
|
24
|
+
|
25
|
+
> Youโll need to run `yarn init` or `npm init -y` first.
|
26
|
+
|
27
|
+
---
|
18
28
|
|
19
|
-
|
29
|
+
## ๐ก Usage
|
20
30
|
|
21
|
-
|
31
|
+
### With Yarn
|
22
32
|
|
33
|
+
```
|
23
34
|
yarn init
|
24
35
|
npx ts-init-template
|
25
36
|
yarn build
|
26
37
|
yarn start
|
27
38
|
```
|
28
39
|
|
29
|
-
###
|
30
|
-
|
31
|
-
```bash
|
40
|
+
### With NPM
|
32
41
|
|
33
|
-
|
42
|
+
```
|
43
|
+
npm init -y
|
34
44
|
npx ts-init-template
|
35
45
|
npm run build
|
36
46
|
npm run start
|
37
47
|
```
|
38
48
|
|
39
|
-
๐ Remember
|
49
|
+
๐ **Remember:** Every time you change your files in `src/`,
|
50
|
+
run `yarn build` or `npm run build` again to compile.
|
51
|
+
|
52
|
+
---
|
53
|
+
|
54
|
+
## ๐ Links
|
55
|
+
|
56
|
+
- ๐ฆ [View on npm](https://www.npmjs.com/package/ts-init-template)
|
57
|
+
- ๐งโ๐ป [Source on GitHub](https://github.com/SigismundBT/ts_init_template)
|
58
|
+
|
59
|
+
---
|
60
|
+
|
61
|
+
## ๐ License
|
62
|
+
|
63
|
+
MIT ยฉ SigismundBT
|