Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucifier129 committed Jul 13, 2023
1 parent c0db205 commit a092095
Show file tree
Hide file tree
Showing 17 changed files with 70 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": true,
"linked": [],
"access": "public",
"baseBranch": "master",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
Expand Down
11 changes: 0 additions & 11 deletions .changeset/thin-lies-accept.md

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ root.render(

### How do I disable the esm module output of remesh?

**note: from remesh v4.2, esm is not the default, cjs-first now. You still can import remesh/esm to access esm**

remesh v4.0 starts to support esm module output, which may cause errors in your project due to esm/cjs dependencies at this stage. The solution is to disable the esm module or map it to the corresponding cjs module via bundler configuration.

For example, in webpack, you can configure aliases via [resolve.alias](https://webpack.js.org/configuration/resolve/#resolvealias) to
Expand Down
6 changes: 6 additions & 0 deletions packages/remesh-debugger-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# remesh-debugger-helper

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

## 4.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/remesh-debugger-helper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-debugger-helper",
"version": "4.0.0",
"version": "4.1.0",
"description": "A debugger helper for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand All @@ -22,7 +22,7 @@
},
"devDependencies": {
"@types/node": "^16.7.2",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"typescript": "^4.3.2"
},
"publishConfig": {
Expand Down
11 changes: 11 additions & 0 deletions packages/remesh-logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# remesh-logger

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

### Patch Changes

- Updated dependencies [c0db205]
- remesh-debugger-helper@4.1.0

## 4.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/remesh-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-logger",
"version": "4.0.0",
"version": "4.1.0",
"description": "A logger for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand All @@ -19,11 +19,11 @@
},
"dependencies": {
"tslib": "^2.3.1",
"remesh-debugger-helper": "^4.0.0"
"remesh-debugger-helper": "^4.1.0"
},
"devDependencies": {
"@types/node": "^16.7.2",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"typescript": "^4.3.2"
},
"publishConfig": {
Expand Down
6 changes: 6 additions & 0 deletions packages/remesh-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# remesh-react

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

## 4.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/remesh-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-react",
"version": "4.0.1",
"version": "4.1.0",
"description": "React adapter for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand Down Expand Up @@ -31,7 +31,7 @@
"@types/use-sync-external-store": "^0.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"rxjs": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
Expand Down
11 changes: 11 additions & 0 deletions packages/remesh-redux-devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# remesh-redux-devtools

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

### Patch Changes

- Updated dependencies [c0db205]
- remesh-debugger-helper@4.1.0

## 4.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/remesh-redux-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-redux-devtools",
"version": "4.0.0",
"version": "4.1.0",
"description": "Redux devtools adapter for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand All @@ -19,13 +19,13 @@
},
"dependencies": {
"@redux-devtools/extension": "^3.2.2",
"remesh-debugger-helper": "^4.0.0",
"remesh-debugger-helper": "^4.1.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^16.7.2",
"redux": "^4.1.2",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"typescript": "^4.3.2"
},
"publishConfig": {
Expand Down
6 changes: 6 additions & 0 deletions packages/remesh-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# remesh-vue

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

## 4.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/remesh-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-vue",
"version": "4.0.0",
"version": "4.1.0",
"description": "Vue adapter for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand All @@ -24,7 +24,7 @@
"devDependencies": {
"@types/node": "^16.7.2",
"vue": "^3.2.33",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"typescript": "^4.3.2"
},
"publishConfig": {
Expand Down
6 changes: 6 additions & 0 deletions packages/remesh-yjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# remesh-yjs

## 4.1.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

## 4.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/remesh-yjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh-yjs",
"version": "4.0.0",
"version": "4.1.0",
"description": "Yjs adapter for remesh",
"homepage": "https://remesh-js.github.io/remesh/dist/index.html",
"repository": "github:remesh-js/remesh",
Expand All @@ -26,7 +26,7 @@
},
"devDependencies": {
"@types/node": "^16.7.2",
"remesh": "^4.0.0",
"remesh": "^4.2.0",
"rxjs": "^7.0.0",
"typescript": "^4.3.2"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/remesh/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# remesh

## 4.2.0

### Minor Changes

- c0db205: cjs-first, esm opt-in

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/remesh/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remesh",
"version": "4.1.1",
"version": "4.2.0",
"description": "A CQRS-based DDD framework for large and complex TypeScript/JavaScript applications",
"keywords": [
"DDD",
Expand Down

0 comments on commit a092095

Please sign in to comment.