Skip to content

Commit 8f7b25d

Browse files
authored
Simulation Experiment view: account for a SED-ML task instance having issues.
2 parents 56d0848 + ab98f3a commit 8f7b25d

File tree

6 files changed

+89
-59
lines changed

6 files changed

+89
-59
lines changed

bun.lock

Lines changed: 8 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"url": "git+https://github.com/opencor/webapp.git"
2424
},
2525
"type": "module",
26-
"version": "0.20260301.0",
26+
"version": "0.20260301.1",
2727
"engines": {
2828
"bun": ">=1.2.0"
2929
},

src/renderer/bun.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"./style.css": "./dist/opencor.css"
4444
},
45-
"version": "0.20260301.0",
45+
"version": "0.20260301.1",
4646
"scripts": {
4747
"build": "vite build && bun scripts/generate.version.js",
4848
"build:lib": "vite build --config vite.lib.config.ts && bun scripts/copy.indexdts.js",

src/renderer/scripts/dependencies.update.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env bun
22

33
import { spawnSync } from 'bun';
4+
import fs from 'node:fs';
45
import path from 'node:path';
56
import { fileURLToPath } from 'node:url';
67

@@ -22,6 +23,9 @@ const updateDependencies = (dir) => {
2223

2324
run('bun', ['clean']);
2425
run('bun', ['update', '-i']);
26+
27+
fs.rmSync(path.join(dir, 'bun.lock'), { force: true });
28+
2529
run('bun', ['install']);
2630
run('bun', ['clean']);
2731
};

0 commit comments

Comments
 (0)