Skip to content

Commit b735adf

Browse files
authored
Merge pull request #61 from 1Byte-Software/develop
build: update version 1.11.2
2 parents 6aaa441 + d9520e0 commit b735adf

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.11.2]
9+
10+
### Fixed
11+
12+
- External `react-router` in bundle.
13+
814
## [1.11.1]
915

1016
### Fixed
@@ -18,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1824
- Add `Filter` component.
1925
- Add `Tag.Group` component.
2026
- Add `type` prop for `Tag` component.
21-
- Add `useFilter` hooks.
27+
- Add `useFilter` hooks.
2228

2329
## [1.10.1]
2430

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "1byte-react-design",
3-
"version": "1.11.1-hotfix.2",
3+
"version": "1.11.2",
44
"description": "A simple React UI library",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -16,9 +16,8 @@
1616
},
1717
"peerDependencies": {
1818
"react": "^18.0.0",
19-
"react-dom": "^18.0.0",
2019
"react-router": "^7.0.0",
21-
"yup": "^1.7.0"
20+
"yup": "1.7.0"
2221
},
2322
"dependencies": {
2423
"@ant-design/cssinjs": "^1.24.0",

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ module.exports = {
2929
},
3030
],
3131
},
32-
externals: {
32+
externals: { // Externalize for use from client
3333
react: 'react',
3434
'react-dom': 'react-dom',
35+
'react-router': 'react-router',
3536
},
3637
plugins: [
3738
new BundleAnalyzerPlugin({

0 commit comments

Comments
 (0)