Skip to content

Commit

Permalink
fixed dependencies
Browse files Browse the repository at this point in the history
Issue #303
  • Loading branch information
rsoika committed Feb 2, 2024
1 parent 624ccca commit c290bbd
Show file tree
Hide file tree
Showing 6 changed files with 1,299 additions and 1,239 deletions.
3 changes: 1 addition & 2 deletions open-bpmn.glsp-client/lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"version": "1.2.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
"run": {
Expand All @@ -10,4 +9,4 @@
"publish": {
"registry": "https://registry.npmjs.org/"
}
}
}
4 changes: 3 additions & 1 deletion open-bpmn.glsp-client/open-bpmn-app/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ config.module.rules.push({
loader: require.resolve('@theia/application-manager/lib/expose-loader')
}); */

module.exports = config;
module.exports = config;

config.ignoreWarnings = [/Failed to parse source map/];
4 changes: 2 additions & 2 deletions open-bpmn.glsp-client/open-bpmn-theia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"@eclipse-glsp/theia-integration": "2.1.0"
},
"scripts": {
"prepare": "yarn clean && yarn build",
"build": "tsc -b",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"build": "tsc",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
"prepare": "yarn clean && yarn build",
"watch": "tsc -w"
},
"theiaExtensions": [
Expand Down
5 changes: 3 additions & 2 deletions open-bpmn.glsp-client/open-bpmn-theia/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"extends": "@eclipse-glsp/ts-config/",
"extends": "@eclipse-glsp/ts-config/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib"
"outDir": "lib",
"resolveJsonModule": true
},
"include": [
"src"
Expand Down
9 changes: 5 additions & 4 deletions open-bpmn.glsp-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@
"string-width": "4.2.3"
},
"devDependencies": {
"@eclipse-glsp/config": "2.1.0-next.de11704.146",
"rimraf": "^2.6.1",
"lerna": "^6.6.1",
"typescript": "^5.2.2"
"@eclipse-glsp/dev": "2.0.0",
"@types/node": "16.x",
"lerna": "^7.0.0",
"typescript": "^5.1.3",
"rimraf": "^2.6.1"
},
"engines": {
"node": ">=16.11.0",
Expand Down
Loading

0 comments on commit c290bbd

Please sign in to comment.