Skip to content

Commit 33d4bdc

Browse files
authored
fix clean script for the example applications (#16767)
running npm run clean failed as the example applications did not call the correct theiaext clean
1 parent 9c4cd57 commit 33d4bdc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/browser-only/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
"scripts": {
7474
"prepare:no-native": "lerna run prepare --scope=\"@theia/re-exports\" && lerna run generate-theia-re-exports --scope=\"@theia/core\"",
75-
"clean": "theia clean",
75+
"clean": "theiaext clean",
7676
"build": "theiaext build && npm run -s bundle",
7777
"bundle": "theia build --mode development",
7878
"compile": "theiaext compile",

examples/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"@theia/workspace": "1.67.0"
9898
},
9999
"scripts": {
100-
"clean": "theia clean",
100+
"clean": "theiaext clean",
101101
"build": "theiaext build && npm run -s bundle",
102102
"build:production": "theiaext build && npm run -s bundle:production",
103103
"bundle": "npm run rebuild && theia build --mode development",

examples/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"scripts": {
104104
"build": "theiaext build && npm run -s bundle",
105105
"bundle": "npm run rebuild && theia build --mode development",
106-
"clean": "theia clean",
106+
"clean": "theiaext clean",
107107
"compile": "tsc -b",
108108
"lint": "theiaext lint",
109109
"rebuild": "theia rebuild:electron --cacheRoot ../..",

0 commit comments

Comments
 (0)