Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 28c9883

Browse files
authored
Merge pull request #3 from soywod/develop
Release v1.0.5
2 parents 443e75d + 34fb074 commit 28c9883

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.5] - 2022-05-26
11+
12+
### Fix
13+
14+
- Export only UMD and ESM formats
15+
1016
## [1.0.4] - 2022-05-26
1117

1218
### Fix
@@ -25,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2531

2632
## [1.0.0] - 2022-05-26
2733

28-
[unreleased]: https://github.com/soywod/react-use-bireducer/compare/v1.0.4...HEAD
34+
[unreleased]: https://github.com/soywod/react-use-bireducer/compare/v1.0.5...HEAD
35+
[1.0.5]: https://github.com/soywod/react-use-bireducer/compare/v1.0.4...v1.0.5
2936
[1.0.4]: https://github.com/soywod/react-use-bireducer/compare/v1.0.3...v1.0.4
3037
[1.0.3]: https://github.com/soywod/react-use-bireducer/compare/v1.0.2...v1.0.3
3138
[1.0.2]: https://github.com/soywod/react-use-bireducer/compare/v1.0.1...v1.0.2

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22
"name": "react-use-bireducer",
33
"author": "soywod <clement.douin@posteo.net>",
44
"description": "React hook for managing effects from reducers.",
5-
"version": "1.0.4",
5+
"version": "1.0.5",
66
"license": "MIT",
77
"source": "src/index.ts",
88
"typings": "dist/index.d.ts",
99
"main": "dist/index.umd.js",
1010
"module": "dist/index.esm.js",
11-
"exports": "dist/index.modern.js",
1211
"files": [
1312
"dist/index.d.ts",
1413
"dist/index.umd.js",
15-
"dist/index.esm.js",
16-
"dist/index.modern.js"
14+
"dist/index.esm.js"
1715
],
1816
"devDependencies": {
1917
"@jest/types": "^28.1.0",
@@ -54,7 +52,7 @@
5452
"scripts": {
5553
"prepare": "husky install",
5654
"start": "microbundle watch",
57-
"build": "microbundle",
55+
"build": "microbundle --no-sourcemap -f esm,umd",
5856
"test": "yarn jest",
5957
"lint": "yarn eslint --ext ts src"
6058
}

0 commit comments

Comments
 (0)