@temir.ra/create-test115 0.0.26 → 0.0.27
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/README.md +2 -1
- package/buildinfo.txt +1 -1
- package/package.json +1 -1
- package/template/README.md +2 -1
- package/template/src/dev.ts +1 -1
- package/template/src/urls.ts +3 -3
package/README.md
CHANGED
|
@@ -311,7 +311,8 @@ bun run build # compile via tsc + bundle to ESM, IIFE, and CLI
|
|
|
311
311
|
2. Make the changes and commit.
|
|
312
312
|
3. Bump the version in [`package.json`](package.json).
|
|
313
313
|
4. Add an entry for the new version in [`CHANGELOG.md`](CHANGELOG.md).
|
|
314
|
-
5.
|
|
314
|
+
5. Run `bun run build`.
|
|
315
|
+
6. Pull request the branch and publish.
|
|
315
316
|
|
|
316
317
|
## Publish
|
|
317
318
|
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.27+3f30950
|
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -44,7 +44,8 @@ See [Publish](#publish).
|
|
|
44
44
|
2. Make the changes and commit.
|
|
45
45
|
3. Bump the version in [`package.json`](package.json).
|
|
46
46
|
4. Add an entry for the new version in [`CHANGELOG.md`](CHANGELOG.md).
|
|
47
|
-
5.
|
|
47
|
+
5. Run `bun run build`.
|
|
48
|
+
6. Pull request the branch and publish.
|
|
48
49
|
|
|
49
50
|
## Publish
|
|
50
51
|
|
package/template/src/dev.ts
CHANGED
package/template/src/urls.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const distUrl = new URL('.', import.meta.url);
|
|
2
|
-
export const changelogUrl = new URL('../CHANGELOG.md', distUrl);
|
|
3
|
-
export const buildinfoUrl = new URL('../buildinfo.txt', distUrl);
|
|
1
|
+
export const distUrl: URL = new URL('.', import.meta.url);
|
|
2
|
+
export const changelogUrl: URL = new URL('../CHANGELOG.md', distUrl);
|
|
3
|
+
export const buildinfoUrl: URL = new URL('../buildinfo.txt', distUrl);
|