Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vankeisb committed Apr 21, 2021
2 parents ca37d7d + bbf203c commit 66069dc
Show file tree
Hide file tree
Showing 24 changed files with 587 additions and 390 deletions.
4 changes: 1 addition & 3 deletions core/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: ['node_modules', 'samples'],
testMatch: [
'**/*.test.ts'
],
testMatch: ['**/*.test.ts'],
};
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tea-cup-core",
"version": "2.0.0",
"version": "2.0.1",
"description": "react-tea-cup core classes and utilities (Maybe etc)",
"author": "Rémi Van Keisbelck <[email protected]>",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion core/src/TeaCup/Cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ export abstract class Cmd<Msg> {
/**
* A command that does nothing.
*/
class CmdNone<Msg> extends Cmd<Msg> {
// exported for perf optimisation reasons
export class CmdNone<Msg> extends Cmd<Msg> {
execute(dispatch: Dispatcher<Msg>): void {
// it's a noop !
}
Expand Down
Loading

0 comments on commit 66069dc

Please sign in to comment.