@theia/output 1.53.0-next.5 → 1.53.0-next.55
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.
- package/README.md +33 -33
- package/package.json +6 -6
- package/src/browser/output-channel.ts +366 -366
- package/src/browser/output-commands.ts +100 -100
- package/src/browser/output-context-menu.ts +34 -34
- package/src/browser/output-contribution.ts +274 -274
- package/src/browser/output-editor-factory.ts +68 -68
- package/src/browser/output-editor-model-factory.ts +54 -54
- package/src/browser/output-frontend-module.ts +53 -53
- package/src/browser/output-preferences.ts +58 -58
- package/src/browser/output-resource.ts +65 -65
- package/src/browser/output-toolbar-contribution.tsx +116 -116
- package/src/browser/output-widget.ts +256 -256
- package/src/browser/style/output.css +31 -31
- package/src/common/output-uri.spec.ts +53 -53
- package/src/common/output-uri.ts +47 -47
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
<div align='center'>
|
|
2
|
-
|
|
3
|
-
<br />
|
|
4
|
-
|
|
5
|
-
<img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
|
|
6
|
-
|
|
7
|
-
<h2>ECLIPSE THEIA - OUTPUT EXTENSION</h2>
|
|
8
|
-
|
|
9
|
-
<hr />
|
|
10
|
-
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
## Description
|
|
14
|
-
|
|
15
|
-
The `@theia/output` extension contributes an `output` widget to the application that displays output to end-users.
|
|
16
|
-
The displayed output usually comes from external commands executed by the backend, e.g. `git` or language-servers.
|
|
17
|
-
Generally, output requires a bit more of the user's attention compared to log messages as they tend to be more verbose,
|
|
18
|
-
and help identify internal operations which a user can act upon if problems occur.
|
|
19
|
-
|
|
20
|
-
## Additional Information
|
|
21
|
-
|
|
22
|
-
- [API documentation for `@theia/output`](https://eclipse-theia.github.io/theia/docs/next/modules/output.html)
|
|
23
|
-
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
24
|
-
- [Theia - Website](https://theia-ide.org/)
|
|
25
|
-
|
|
26
|
-
## License
|
|
27
|
-
|
|
28
|
-
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
29
|
-
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
30
|
-
|
|
31
|
-
## Trademark
|
|
32
|
-
"Theia" is a trademark of the Eclipse Foundation
|
|
33
|
-
https://www.eclipse.org/theia
|
|
1
|
+
<div align='center'>
|
|
2
|
+
|
|
3
|
+
<br />
|
|
4
|
+
|
|
5
|
+
<img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
|
|
6
|
+
|
|
7
|
+
<h2>ECLIPSE THEIA - OUTPUT EXTENSION</h2>
|
|
8
|
+
|
|
9
|
+
<hr />
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
## Description
|
|
14
|
+
|
|
15
|
+
The `@theia/output` extension contributes an `output` widget to the application that displays output to end-users.
|
|
16
|
+
The displayed output usually comes from external commands executed by the backend, e.g. `git` or language-servers.
|
|
17
|
+
Generally, output requires a bit more of the user's attention compared to log messages as they tend to be more verbose,
|
|
18
|
+
and help identify internal operations which a user can act upon if problems occur.
|
|
19
|
+
|
|
20
|
+
## Additional Information
|
|
21
|
+
|
|
22
|
+
- [API documentation for `@theia/output`](https://eclipse-theia.github.io/theia/docs/next/modules/output.html)
|
|
23
|
+
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
24
|
+
- [Theia - Website](https://theia-ide.org/)
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
29
|
+
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
30
|
+
|
|
31
|
+
## Trademark
|
|
32
|
+
"Theia" is a trademark of the Eclipse Foundation
|
|
33
|
+
https://www.eclipse.org/theia
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/output",
|
|
3
|
-
"version": "1.53.0-next.
|
|
3
|
+
"version": "1.53.0-next.55+d1a989a68c",
|
|
4
4
|
"description": "Theia - Output Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.53.0-next.
|
|
7
|
-
"@theia/editor": "1.53.0-next.
|
|
8
|
-
"@theia/monaco": "1.53.0-next.
|
|
6
|
+
"@theia/core": "1.53.0-next.55+d1a989a68c",
|
|
7
|
+
"@theia/editor": "1.53.0-next.55+d1a989a68c",
|
|
8
|
+
"@theia/monaco": "1.53.0-next.55+d1a989a68c",
|
|
9
9
|
"@theia/monaco-editor-core": "1.83.101",
|
|
10
10
|
"@types/p-queue": "^2.3.1",
|
|
11
11
|
"p-queue": "^2.4.2",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"watch": "theiaext watch"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@theia/ext-scripts": "1.
|
|
47
|
+
"@theia/ext-scripts": "1.53.0"
|
|
48
48
|
},
|
|
49
49
|
"nyc": {
|
|
50
50
|
"extends": "../../configs/nyc.json"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "d1a989a68c1b5ec1f9098e9126653c6346844769"
|
|
53
53
|
}
|