@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 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. Pull request the branch and publish.
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.25+3f30950
1
+ 0.0.27+3f30950
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-test115",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Typescript library template",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -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. Pull request the branch and publish.
47
+ 5. Run `bun run build`.
48
+ 6. Pull request the branch and publish.
48
49
 
49
50
  ## Publish
50
51
 
@@ -1,4 +1,4 @@
1
- const start = performance.now();
1
+ const start: number = performance.now();
2
2
 
3
3
  // dev code
4
4
 
@@ -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);