Skip to content

Commit

Permalink
fix(package): point package.json to the right entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Bour committed May 28, 2021
1 parent da62708 commit 62bea69
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Changelog

## [Version 0.1.3 - Package entrypoints](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.3)

- **fix**(package): point `package.json` to the right entrypoints

## [Version 0.1.2 - Remove support for `RANDOM_BYTES_BASE_SEED`](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.2)

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

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

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

## [Version 0.1.0 - Initial release](https://github.com/csquare-ai/random-bytes-seed/releases/tag/0.1.0)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@csquare/random-bytes-seed",
"version": "0.1.2",
"version": "0.1.3",
"description": "Zero-dep package to generate random bytes using a seed.",
"keywords": [
"random-bytes",
Expand All @@ -18,9 +18,9 @@
"files": [
"dist/**"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/random-bytes-seed.js",
"module": "dist/esm/random-bytes-seed.js",
"types": "dist/types/random-bytes-seed.d.ts",
"repository": "github:csquare-ai/random-bytes-seed",
"scripts": {
"test": "jest",
Expand Down

0 comments on commit 62bea69

Please sign in to comment.