Skip to content

Commit

Permalink
Depend on published lionweb-repository package.
Browse files Browse the repository at this point in the history
  • Loading branch information
joswarmer committed Jun 21, 2024
1 parent 9f419f8 commit b8dd5c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@freon4dsl/core",
"version": "0.6.0",
"version": "0.7.0-beta",
"publishConfig": {
"access": "public"
},
Expand All @@ -15,6 +15,7 @@
},
"scripts": {
"build": "rollup -c",
"clean": "rm -rf node_modules/ && rm -rf dist/",
"build-release": "npm run build",
"cleanup": "bash ../../scripts/cleanup.sh",
"test": "jest --config ./jest.config.js",
Expand All @@ -28,7 +29,7 @@
"dependencies": {
"lodash": "^4.17.21",
"@lionweb/validation": "0.6.2",
"@lionweb/repository-client": "0.1.1",
"@lionweb/repository-client": "0.2.0",
"mobx": "^6.12.3",
"reflect-metadata": "^0.2.2",
"tslib": "^2.6.3"
Expand Down
5 changes: 4 additions & 1 deletion packages/core/src/modelmanager/ModelManager.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { FreErrorSeverity, FreLanguage, FreLogger, FreModel, FreModelUnit, FreNamedNode } from "@freon4dsl/core";
import { FreModelUnit, FreModel, FreNamedNode } from "../ast/index";
import { FreLanguage } from "../language/index";
import { FreLogger } from "../logging/index";
import { IServerCommunication, ModelUnitIdentifier } from "../server/IServerCommunication";
import { FreErrorSeverity } from "../validator/index";

const LOGGER = new FreLogger("ModelManager");

Expand Down

0 comments on commit b8dd5c6

Please sign in to comment.