@theia/plugin 1.27.0-next.43 → 1.27.0-next.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/theia.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.27.0-next.43+398fa66289f",
3
+ "version": "1.27.0-next.46+106df5b75ad",
4
4
  "description": "Theia - Plugin API",
5
5
  "types": "./src/theia.d.ts",
6
6
  "publishConfig": {
@@ -32,5 +32,5 @@
32
32
  "nyc": {
33
33
  "extends": "../../configs/nyc.json"
34
34
  },
35
- "gitHead": "398fa66289f38a18f148dbf93c2ac8bc77025256"
35
+ "gitHead": "106df5b75ad1b1cf75291158ba3c17a86c9722ec"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -10767,6 +10767,9 @@ export module '@theia/plugin' {
10767
10767
 
10768
10768
  /** Controls whether to show the "Terminal will be reused by tasks, press any key to close it" message. */
10769
10769
  showReuseMessage?: boolean;
10770
+
10771
+ /** Controls whether the terminal is cleared before executing the task. */
10772
+ clear?: boolean;
10770
10773
  }
10771
10774
 
10772
10775
  export class Task {