Skip to content

Commit 3c81a0f

Browse files
authored
Fix wavesurfer version (#8508)
1 parent fd3103a commit 3c81a0f

5 files changed

Lines changed: 30 additions & 24 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,22 +375,26 @@ jobs:
375375
# setuptools will make distutils available again (but we should migrate our packages probably).
376376
command: |
377377
pip install setuptools
378+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
378379
379380
cd newIDE\app
380381
381382
npm -v
383+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
382384
383385
Remove-Item package-lock.json
384386
385387
$Env:REQUIRES_EXACT_LIBGD_JS_VERSION = "true"
386388
387389
npm install
390+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
388391
389392
cd ..\electron-app
390393
391394
Remove-Item package-lock.json
392395
393396
npm install
397+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
394398
395399
cd ..\..
396400

newIDE/app/package-lock.json

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

newIDE/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"source-map-explorer": "^2.0.1",
9898
"three": "0.160.0",
9999
"url-search-params": "^1.0.2",
100-
"wavesurfer.js": "^7.8.6",
100+
"wavesurfer.js": "7.12.6",
101101
"xxhashjs": "^0.2.2",
102102
"yaml": "^2.8.2",
103103
"@material-ui/styles": "4.11.5"

newIDE/app/patches/wavesurfer.js+7.12.1.patch

Lines changed: 0 additions & 19 deletions
This file was deleted.

newIDE/app/patches/wavesurfer.js+7.12.6.patch

Lines changed: 21 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)