Skip to content

Commit 66069dc

Browse files
committed
Merge branch 'release/2.0.1'
2 parents ca37d7d + bbf203c commit 66069dc

24 files changed

Lines changed: 587 additions & 390 deletions

core/jest.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,5 @@ module.exports = {
2727
preset: 'ts-jest',
2828
testEnvironment: 'node',
2929
testPathIgnorePatterns: ['node_modules', 'samples'],
30-
testMatch: [
31-
'**/*.test.ts'
32-
],
30+
testMatch: ['**/*.test.ts'],
3331
};

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tea-cup-core",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "react-tea-cup core classes and utilities (Maybe etc)",
55
"author": "Rémi Van Keisbelck <remi@rvkb.com>",
66
"license": "MIT",

core/src/TeaCup/Cmd.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ export abstract class Cmd<Msg> {
6363
/**
6464
* A command that does nothing.
6565
*/
66-
class CmdNone<Msg> extends Cmd<Msg> {
66+
// exported for perf optimisation reasons
67+
export class CmdNone<Msg> extends Cmd<Msg> {
6768
execute(dispatch: Dispatcher<Msg>): void {
6869
// it's a noop !
6970
}

0 commit comments

Comments
 (0)