Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.11.2]

### Fixed

- External `react-router` in bundle.

## [1.11.1]

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

## [1.10.1]

Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "1byte-react-design",
"version": "1.11.1-hotfix.2",
"version": "1.11.2",
"description": "A simple React UI library",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -16,9 +16,8 @@
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^7.0.0",
"yup": "^1.7.0"
"yup": "1.7.0"
},
"dependencies": {
"@ant-design/cssinjs": "^1.24.0",
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ module.exports = {
},
],
},
externals: {
externals: { // Externalize for use from client
react: 'react',
'react-dom': 'react-dom',
'react-router': 'react-router',
},
plugins: [
new BundleAnalyzerPlugin({
Expand Down