Skip to content

Commit 2f4f945

Browse files
authored
Merge pull request #54 from com-pas/chore/fix-core-imports
fix(plugins): Fix core imports
2 parents 5b489dd + cc41f87 commit 2f4f945

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/plugins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@compas-oscd/plugins",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"repository": "https://github.com/com-pas/open-scd.git",
55
"directory": "packages/plugins",
66
"description": "The official plug-ins of open-scd.",

packages/plugins/src/menu/NewProject.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import {
1212
Wizard,
1313
WizardInputElement,
1414
} from '@compas-oscd/open-scd/dist/foundation.js';
15-
import { newOpenDocEvent } from '@compas-oscd/core/foundation/deprecated/open-event.js';
15+
import { newOpenDocEvent } from '@compas-oscd/core';
1616
import { EditorAction } from '@compas-oscd/core';
17-
import { newLogEvent } from '@compas-oscd/core/foundation/deprecated/history.js';
17+
import { newLogEvent } from '@compas-oscd/core';
1818
import {
1919
newEmptySCD,
2020
SupportedVersion,

packages/plugins/src/wizards/lnode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import {
3636
Create,
3737
EditorAction,
3838
} from '@compas-oscd/core';
39-
import { newLogEvent } from '@compas-oscd/core/foundation/deprecated/history.js';
39+
import { newLogEvent } from '@compas-oscd/core';
4040

4141
function createLNodeAction(parent: Element): WizardActor {
4242
return (

0 commit comments

Comments
 (0)