@temir.ra/create-template 0.2.0 → 0.2.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Version 0
2
2
 
3
+ ## 0.2.1
4
+
5
+ 1. Updated Quick Start section.
6
+
3
7
  ## 0.2.0
4
8
 
5
9
  1. Synced with `ts-lib@0.9.0` template.
package/README.md CHANGED
@@ -25,8 +25,7 @@ cd <NEW_PACKAGE>
25
25
  bun info "@temir.ra/create-template" version
26
26
 
27
27
  # create/update a package from the template in the current directory
28
- # clear the package manager cache to pick up the latest version when not pinning a specific version
29
- bun create --no-install --no-git "@temir.ra/template" .
28
+ bun create --no-install --no-git "@temir.ra/template@latest" .
30
29
 
31
30
  # set metadata in package.json
32
31
 
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.2.0+24c1908
1
+ 0.2.1+57fdfbd
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A template for a template package.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -27,8 +27,7 @@ cd <NEW_PACKAGE>
27
27
  bun info "<TEMPLATE_PACKAGE_NAME>" version
28
28
 
29
29
  # create/update a package from the template in the current directory
30
- # clear the package manager cache to pick up the latest version when not pinning a specific version
31
- bun create --no-install --no-git "<TEMPLATE_NAME>" .
30
+ bun create --no-install --no-git "<TEMPLATE_NAME>@latest" .
32
31
 
33
32
  # set metadata in package.json
34
33