Skip to content

Commit

Permalink
Merge pull request #115 from Phuire-Research/UI
Browse files Browse the repository at this point in the history
Proper export of: isConceptLoaded, unifyConcepts, unifyConceptNames, …
  • Loading branch information
REllEK-IO committed Oct 23, 2023
2 parents b1d9501 + c6e53a7 commit 7f2ac3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@phuire/strx",
"version": "0.0.45",
"version": "0.0.46",
"description": "Unified Turing Machine",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export {
} from './model/actionOperators';
export type { Action, ActionType } from './model/action';
export { primeAction, createAction, getSemaphore, prepareActionCreator, prepareActionWithPayloadCreator } from './model/action';
export { createConcept, createQuality, defaultReducer, defaultMethodCreator } from './model/concept';
export { createConcept, createQuality, defaultReducer, defaultMethodCreator, isConceptLoaded } from './model/concept';
export type {
Concept,
Quality,
Expand All @@ -53,7 +53,6 @@ export type {
Principle,
Mode,
MethodCreator,
isConceptLoaded
} from './model/concept';
export type { KeyedSelector } from './model/selector';
export { selectState, selectConcept, selectSlice, selectPayload } from './model/selector';
Expand Down
2 changes: 1 addition & 1 deletion src/test/concepts.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { counterName, createCounterConcept } from '../concepts/counter/counter.concept';
import { createAxium } from '../model/axium';
import { isConceptLoaded } from '../model/concept';
import { isConceptLoaded } from '../index';

test('Concepts exists', (done) => {
const axium = createAxium('Mock Axium', [createCounterConcept()]);
Expand Down

0 comments on commit 7f2ac3d

Please sign in to comment.