Skip to content

Commit 841450c

Browse files
committed
5.2.3
1 parent 3d267c2 commit 841450c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

javascript/dist/cjs/src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type { ActionFunction, ActionFunctionInput, ActionName, ChangeEvent, Chan
88
export * from './states/index.js';
99
export * from './truth-table-generator/index.js';
1010
export * from './util.js';
11-
export * from './actions';
11+
export * from './actions/index.js';
1212
export declare function calculateActionFromMap<DocType>(stateSetToActionMap: StateSetToActionMap, input: StateResolveFunctionInput<DocType>): {
1313
action: ActionName;
1414
stateSet: StateSet;

javascript/dist/cjs/src/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/dist/cjs/src/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/dist/esm/src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type { ActionFunction, ActionFunctionInput, ActionName, ChangeEvent, Chan
88
export * from './states/index.js';
99
export * from './truth-table-generator/index.js';
1010
export * from './util.js';
11-
export * from './actions';
11+
export * from './actions/index.js';
1212
export declare function calculateActionFromMap<DocType>(stateSetToActionMap: StateSetToActionMap, input: StateResolveFunctionInput<DocType>): {
1313
action: ActionName;
1414
stateSet: StateSet;

javascript/dist/esm/src/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/dist/esm/src/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "event-reduce-js",
3-
"version": "5.2.2",
3+
"version": "5.2.3",
44
"description": "javascript implementation of the event-reduce algorithm https://pubkey.github.io/event-reduce/",
55
"keywords": [
66
"event-reduce",

javascript/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export type {
4242
export * from './states/index.js';
4343
export * from './truth-table-generator/index.js';
4444
export * from './util.js';
45-
export * from './actions';
45+
export * from './actions/index.js';
4646

4747
export function calculateActionFromMap<DocType>(
4848
stateSetToActionMap: StateSetToActionMap,

0 commit comments

Comments
 (0)