@theia/variable-resolver 1.69.0-next.81 → 1.69.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.
|
@@ -26,7 +26,7 @@ const common_variable_contribution_1 = require("./common-variable-contribution")
|
|
|
26
26
|
exports.default = new inversify_1.ContainerModule(bind => {
|
|
27
27
|
bind(variable_1.VariableRegistry).toSelf().inSingletonScope();
|
|
28
28
|
bind(variable_resolver_service_1.VariableResolverService).toSelf().inSingletonScope();
|
|
29
|
-
(0, core_1.
|
|
29
|
+
(0, core_1.bindRootContributionProvider)(bind, variable_1.VariableContribution);
|
|
30
30
|
bind(variable_resolver_frontend_contribution_1.VariableResolverFrontendContribution).toSelf().inSingletonScope();
|
|
31
31
|
for (const identifier of [browser_1.FrontendApplicationContribution, core_1.CommandContribution]) {
|
|
32
32
|
bind(identifier).toService(variable_resolver_frontend_contribution_1.VariableResolverFrontendContribution);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variable-resolver-frontend-module.js","sourceRoot":"","sources":["../../src/browser/variable-resolver-frontend-module.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,+CAA+C;AAC/C,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,4DAA+D;AAC/D,
|
|
1
|
+
{"version":3,"file":"variable-resolver-frontend-module.js","sourceRoot":"","sources":["../../src/browser/variable-resolver-frontend-module.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,+CAA+C;AAC/C,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,4DAA+D;AAC/D,sCAAgF;AAChF,qDAA0E;AAC1E,yCAAoE;AACpE,+EAAyE;AACzE,uGAAiG;AACjG,2EAAsE;AACtE,iFAA4E;AAE5E,kBAAe,IAAI,2BAAe,CAAC,IAAI,CAAC,EAAE;IACtC,IAAI,CAAC,2BAAgB,CAAC,CAAC,MAAM,EAAE,CAAC,gBAAgB,EAAE,CAAC;IACnD,IAAI,CAAC,mDAAuB,CAAC,CAAC,MAAM,EAAE,CAAC,gBAAgB,EAAE,CAAC;IAC1D,IAAA,mCAA4B,EAAC,IAAI,EAAE,+BAAoB,CAAC,CAAC;IAEzD,IAAI,CAAC,8EAAoC,CAAC,CAAC,MAAM,EAAE,CAAC,gBAAgB,EAAE,CAAC;IACvE,KAAK,MAAM,UAAU,IAAI,CAAC,yCAA+B,EAAE,0BAAmB,CAAC,EAAE,CAAC;QAC9E,IAAI,CAAC,UAAU,CAAC,CAAC,SAAS,CAAC,8EAAoC,CAAC,CAAC;IACrE,CAAC;IAED,IAAI,CAAC,sDAAwB,CAAC,CAAC,MAAM,EAAE,CAAC,gBAAgB,EAAE,CAAC;IAE3D,IAAI,CAAC,yDAA0B,CAAC,CAAC,MAAM,EAAE,CAAC,gBAAgB,EAAE,CAAC;IAC7D,IAAI,CAAC,+BAAoB,CAAC,CAAC,SAAS,CAAC,yDAA0B,CAAC,CAAC;AACrE,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/variable-resolver",
|
|
3
|
-
"version": "1.69.0
|
|
3
|
+
"version": "1.69.0",
|
|
4
4
|
"description": "Theia - Variable Resolver Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.69.0
|
|
6
|
+
"@theia/core": "1.69.0",
|
|
7
7
|
"tslib": "^2.6.2"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"watch": "theiaext watch"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@theia/ext-scripts": "1.
|
|
48
|
+
"@theia/ext-scripts": "1.69.0"
|
|
49
49
|
},
|
|
50
50
|
"nyc": {
|
|
51
51
|
"extends": "../../configs/nyc.json"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "3b413470b0f990dc0d6e4287da02a6b6e21d3239"
|
|
54
54
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { ContainerModule } from '@theia/core/shared/inversify';
|
|
18
|
-
import {
|
|
18
|
+
import { bindRootContributionProvider, CommandContribution } from '@theia/core';
|
|
19
19
|
import { FrontendApplicationContribution } from '@theia/core/lib/browser';
|
|
20
20
|
import { VariableRegistry, VariableContribution } from './variable';
|
|
21
21
|
import { VariableQuickOpenService } from './variable-quick-open-service';
|
|
@@ -26,7 +26,7 @@ import { CommonVariableContribution } from './common-variable-contribution';
|
|
|
26
26
|
export default new ContainerModule(bind => {
|
|
27
27
|
bind(VariableRegistry).toSelf().inSingletonScope();
|
|
28
28
|
bind(VariableResolverService).toSelf().inSingletonScope();
|
|
29
|
-
|
|
29
|
+
bindRootContributionProvider(bind, VariableContribution);
|
|
30
30
|
|
|
31
31
|
bind(VariableResolverFrontendContribution).toSelf().inSingletonScope();
|
|
32
32
|
for (const identifier of [FrontendApplicationContribution, CommandContribution]) {
|