@theia/application-package 1.67.0-next.59 → 1.67.0
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/lib/api.d.ts +1 -1
- package/lib/api.js +1 -1
- package/package.json +4 -4
- package/src/api.ts +1 -1
package/lib/api.d.ts
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* The default supported API version the framework supports.
|
|
3
3
|
* The version should be in the format `x.y.z`.
|
|
4
4
|
*/
|
|
5
|
-
export declare const DEFAULT_SUPPORTED_API_VERSION = "1.
|
|
5
|
+
export declare const DEFAULT_SUPPORTED_API_VERSION = "1.106.1";
|
|
6
6
|
//# sourceMappingURL=api.d.ts.map
|
package/lib/api.js
CHANGED
|
@@ -20,5 +20,5 @@ exports.DEFAULT_SUPPORTED_API_VERSION = void 0;
|
|
|
20
20
|
* The default supported API version the framework supports.
|
|
21
21
|
* The version should be in the format `x.y.z`.
|
|
22
22
|
*/
|
|
23
|
-
exports.DEFAULT_SUPPORTED_API_VERSION = '1.
|
|
23
|
+
exports.DEFAULT_SUPPORTED_API_VERSION = '1.106.1';
|
|
24
24
|
//# sourceMappingURL=api.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/application-package",
|
|
3
|
-
"version": "1.67.0
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"description": "Theia application package API.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"watch": "theiaext watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@theia/request": "1.67.0
|
|
32
|
+
"@theia/request": "1.67.0",
|
|
33
33
|
"@types/fs-extra": "^4.0.2",
|
|
34
34
|
"@types/semver": "^7.5.0",
|
|
35
35
|
"@types/write-json-file": "^2.2.1",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"write-json-file": "^2.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@theia/ext-scripts": "1.
|
|
46
|
+
"@theia/ext-scripts": "1.67.0"
|
|
47
47
|
},
|
|
48
48
|
"nyc": {
|
|
49
49
|
"extends": "../../configs/nyc.json"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "541860e34f1351442be3a1c998fb618472afcefd"
|
|
52
52
|
}
|
package/src/api.ts
CHANGED