@temir.ra/create-template 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- package/README.md +14 -0
- package/buildinfo.txt +1 -1
- package/package.json +1 -1
- package/template/README.md +14 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -38,10 +38,24 @@ bun install
|
|
|
38
38
|
|
|
39
39
|
# Documentation
|
|
40
40
|
|
|
41
|
+
The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
|
|
42
|
+
|
|
41
43
|
*<DOCUMENTATION>*
|
|
42
44
|
|
|
43
45
|
# DevOps
|
|
44
46
|
|
|
47
|
+
```bash
|
|
48
|
+
bun install
|
|
49
|
+
|
|
50
|
+
bun run clean
|
|
51
|
+
bun run build
|
|
52
|
+
bun run tests
|
|
53
|
+
|
|
54
|
+
bun run dev
|
|
55
|
+
|
|
56
|
+
# see publish section for publish instructions
|
|
57
|
+
```
|
|
58
|
+
|
|
45
59
|
## Change Management
|
|
46
60
|
|
|
47
61
|
1. Create a new branch for the change.
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1+e250ca3
|
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -40,10 +40,24 @@ bun install
|
|
|
40
40
|
|
|
41
41
|
# Documentation
|
|
42
42
|
|
|
43
|
+
The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
|
|
44
|
+
|
|
43
45
|
*<DOCUMENTATION>*
|
|
44
46
|
|
|
45
47
|
# DevOps
|
|
46
48
|
|
|
49
|
+
```bash
|
|
50
|
+
bun install
|
|
51
|
+
|
|
52
|
+
bun run clean
|
|
53
|
+
bun run build
|
|
54
|
+
bun run tests
|
|
55
|
+
|
|
56
|
+
bun run dev
|
|
57
|
+
|
|
58
|
+
# see publish section for publish instructions
|
|
59
|
+
```
|
|
60
|
+
|
|
47
61
|
## Change Management
|
|
48
62
|
|
|
49
63
|
1. Create a new branch for the change.
|