@theia/application-package 1.63.0-next.24 → 1.63.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.d.ts.map +1 -1
- package/lib/api.js +1 -1
- package/lib/api.js.map +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.101.1";
|
|
6
6
|
//# sourceMappingURL=api.d.ts.map
|
package/lib/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAgBA;;;GAGG;AACH,eAAO,MAAM,6BAA6B,
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAgBA;;;GAGG;AACH,eAAO,MAAM,6BAA6B,YAAY,CAAC"}
|
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.101.1';
|
|
24
24
|
//# sourceMappingURL=api.js.map
|
package/lib/api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,0CAA0C;AAC1C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF;;;GAGG;AACU,QAAA,6BAA6B,GAAG,
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,0CAA0C;AAC1C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF;;;GAGG;AACU,QAAA,6BAA6B,GAAG,SAAS,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/application-package",
|
|
3
|
-
"version": "1.63.0
|
|
3
|
+
"version": "1.63.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.63.0
|
|
32
|
+
"@theia/request": "1.63.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.63.0"
|
|
47
47
|
},
|
|
48
48
|
"nyc": {
|
|
49
49
|
"extends": "../../configs/nyc.json"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "facf442522991134333495a0b90cf56a56990280"
|
|
52
52
|
}
|
package/src/api.ts
CHANGED