@output.ai/core 0.5.9 → 0.5.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@output.ai/core",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "description": "The core module of the output framework",
5
5
  "type": "module",
6
6
  "exports": {
@@ -7,8 +7,3 @@ export const ComponentFile = {
7
7
  STEPS: 'steps',
8
8
  WORKFLOW: 'workflow'
9
9
  };
10
-
11
- export const CoreModule = {
12
- LOCAL: 'local_core',
13
- NPM: '@output.ai/core'
14
- };
@@ -43,11 +43,10 @@ describe( 'workflow_validator loader', () => {
43
43
  rmSync( dir, { recursive: true, force: true } );
44
44
  } );
45
45
 
46
- it( 'workflow.js: allows imports from @output.ai/core and local_core', async () => {
46
+ it( 'workflow.js: allows imports from @output.ai/core', async () => {
47
47
  const dir = mkdtempSync( join( tmpdir(), 'wf-allow-external-' ) );
48
48
  const src = [
49
49
  'import a from "@output.ai/core";',
50
- 'import b from "local_core";',
51
50
  'const z = 1;'
52
51
  ].join( '\n' );
53
52
  await expect( runLoader( join( dir, 'workflow.js' ), src ) ).resolves.toBeTruthy();