Skip to content

Commit 62bea69

Browse files
author
Mathieu Bour
committed
fix(package): point package.json to the right entrypoints
1 parent da62708 commit 62bea69

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Changelog
22

3+
## [Version 0.1.3 - Package entrypoints](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.3)
4+
5+
- **fix**(package): point `package.json` to the right entrypoints
6+
37
## [Version 0.1.2 - Remove support for `RANDOM_BYTES_BASE_SEED`](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.2)
48

59
- **feat**(env): remove support for `RANDOM_BYTES_BASE_SEED`
610

711
## [Version 0.1.1 - Non-default export](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.1)
812

913
- **feat**(package): expose `randomBytesSeed` as a non default export
10-
- **chore**(package): change the GitHub repository to [csquare-ai/random-bytes-seed](https://github.com/csquare-ai/random-bytes-seed)
14+
- **chore**(package): change the GitHub repository
15+
to [csquare-ai/random-bytes-seed](https://github.com/csquare-ai/random-bytes-seed)
1116
- **ci**(actions): do not run CI on Markdown files modification
1217

1318
## [Version 0.1.0 - Initial release](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.0)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@csquare/random-bytes-seed",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "Zero-dep package to generate random bytes using a seed.",
55
"keywords": [
66
"random-bytes",
@@ -18,9 +18,9 @@
1818
"files": [
1919
"dist/**"
2020
],
21-
"main": "dist/cjs/index.js",
22-
"module": "dist/esm/index.js",
23-
"types": "dist/types/index.d.ts",
21+
"main": "dist/cjs/random-bytes-seed.js",
22+
"module": "dist/esm/random-bytes-seed.js",
23+
"types": "dist/types/random-bytes-seed.d.ts",
2424
"repository": "github:csquare-ai/random-bytes-seed",
2525
"scripts": {
2626
"test": "jest",

0 commit comments

Comments
 (0)