-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from movesthatmatter/dev
Release v1.6
- Loading branch information
Showing
115 changed files
with
12,160 additions
and
1,389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { StorybookConfig } from '@storybook/core-common'; | ||
|
||
export const rootMain: StorybookConfig = { | ||
stories: [], | ||
addons: ['@storybook/addon-essentials'], | ||
// webpackFinal: async (config, { configType }) => { | ||
// // Make whatever fine-grained changes you need that should apply to all storybook configs | ||
|
||
// // Return the altered config | ||
// return config; | ||
// }, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"exclude": [ | ||
"../**/*.spec.js", | ||
"../**/*.test.js", | ||
"../**/*.spec.ts", | ||
"../**/*.test.ts", | ||
"../**/*.spec.tsx", | ||
"../**/*.test.tsx", | ||
"../**/*.spec.jsx", | ||
"../**/*.test.jsx" | ||
], | ||
"include": ["../**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,9 @@ | |
"about": { | ||
"title": "About", | ||
"type": "page" | ||
}, | ||
"changelog": { | ||
"title": "Changelog", | ||
"type": "page" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
|
||
## v0.1.6 (Sep 26 2024) | ||
|
||
### New Features | ||
- [x] Master Actions. [See Pull Request](https://github.com/movesthatmatter/movex/pull/216). | ||
- [x] State Transformers. [See Pull Request](https://github.com/movesthatmatter/movex/pull/218). | ||
- [x] Add ability to disconenect an older client connection (for same client id) in favor of the newer one | ||
|
||
### Improvements | ||
- [x] Improve the Connection Events. [See Pull Request](https://github.com/movesthatmatter/movex/pull/220). | ||
|
||
### Bug Fixes | ||
- [x] State not re-synching after a forwardAction checksum mismatch. | ||
|
||
### Breaking | ||
- none | ||
|
||
## v0.1.5 (July 11 2024) | ||
- [x] Add ability to pass in Client Info Object and sync it to all peers | ||
- [x] Improve Logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
apps/movex-docs/pages/changelog.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './EventEmitter'; | ||
export * from './IOEvents'; | ||
export * from './ScketIOEmitter'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.