@theia/application-manager 1.59.0 → 1.60.0-next.47

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.
@@ -122,8 +122,8 @@ if ('ELECTRON_RUN_AS_NODE' in process.env) {
122
122
 
123
123
  const path = require('path');
124
124
  process.env.THEIA_APP_PROJECT_PATH = path.resolve(__dirname, '..', '..')
125
- const express = require('express');
126
- const { Container } = require('inversify');
125
+ const express = require('@theia/core/shared/express');
126
+ const { Container } = require('@theia/core/shared/inversify');
127
127
  const { BackendApplication, BackendApplicationServer, CliManager } = require('@theia/core/lib/node');
128
128
  const { backendApplicationModule } = require('@theia/core/lib/node/backend-application-module');
129
129
  const { messagingBackendModule } = require('@theia/core/lib/node/messaging/messaging-backend-module');
@@ -68,7 +68,7 @@ class FrontendGenerator extends abstract_generator_1.AbstractGenerator {
68
68
  ${this.ifBrowser("require('es6-promise/auto');")}
69
69
  require('reflect-metadata');
70
70
  require('setimmediate');
71
- const { Container } = require('inversify');
71
+ const { Container } = require('@theia/core/shared/inversify');
72
72
  const { FrontendApplicationConfigProvider } = require('@theia/core/lib/browser/frontend-application-config-provider');
73
73
 
74
74
  FrontendApplicationConfigProvider.set(${this.prettyStringify(this.pck.props.frontend.config)});
@@ -191,7 +191,7 @@ ${Array.from(frontendModules.values(), jsModulePath => `\
191
191
  return `\
192
192
  // @ts-check
193
193
  require('reflect-metadata');
194
- const { Container } = require('inversify');
194
+ const { Container } = require('@theia/core/shared/inversify');
195
195
 
196
196
  module.exports = Promise.resolve().then(() => {
197
197
  const { frontendApplicationModule } = require('@theia/core/lib/browser/frontend-application-module');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/application-manager",
3
- "version": "1.59.0",
3
+ "version": "1.60.0-next.47+9332521b9",
4
4
  "description": "Theia application manager API.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -33,9 +33,9 @@
33
33
  "@babel/plugin-transform-classes": "^7.10.0",
34
34
  "@babel/plugin-transform-runtime": "^7.10.0",
35
35
  "@babel/preset-env": "^7.10.0",
36
- "@theia/application-package": "1.59.0",
37
- "@theia/ffmpeg": "1.59.0",
38
- "@theia/native-webpack-plugin": "1.59.0",
36
+ "@theia/application-package": "1.60.0-next.47+9332521b9",
37
+ "@theia/ffmpeg": "1.60.0-next.47+9332521b9",
38
+ "@theia/native-webpack-plugin": "1.60.0-next.47+9332521b9",
39
39
  "@types/fs-extra": "^4.0.2",
40
40
  "@types/semver": "^7.5.0",
41
41
  "babel-loader": "^8.2.2",
@@ -80,5 +80,5 @@
80
80
  "nyc": {
81
81
  "extends": "../../configs/nyc.json"
82
82
  },
83
- "gitHead": "21358137e41342742707f660b8e222f940a27652"
83
+ "gitHead": "9332521b9aa74bf534d45968905d37e30a13c3b5"
84
84
  }
@@ -123,8 +123,8 @@ if ('ELECTRON_RUN_AS_NODE' in process.env) {
123
123
 
124
124
  const path = require('path');
125
125
  process.env.THEIA_APP_PROJECT_PATH = path.resolve(__dirname, '..', '..')
126
- const express = require('express');
127
- const { Container } = require('inversify');
126
+ const express = require('@theia/core/shared/express');
127
+ const { Container } = require('@theia/core/shared/inversify');
128
128
  const { BackendApplication, BackendApplicationServer, CliManager } = require('@theia/core/lib/node');
129
129
  const { backendApplicationModule } = require('@theia/core/lib/node/backend-application-module');
130
130
  const { messagingBackendModule } = require('@theia/core/lib/node/messaging/messaging-backend-module');
@@ -75,7 +75,7 @@ export class FrontendGenerator extends AbstractGenerator {
75
75
  ${this.ifBrowser("require('es6-promise/auto');")}
76
76
  require('reflect-metadata');
77
77
  require('setimmediate');
78
- const { Container } = require('inversify');
78
+ const { Container } = require('@theia/core/shared/inversify');
79
79
  const { FrontendApplicationConfigProvider } = require('@theia/core/lib/browser/frontend-application-config-provider');
80
80
 
81
81
  FrontendApplicationConfigProvider.set(${this.prettyStringify(this.pck.props.frontend.config)});
@@ -201,7 +201,7 @@ ${Array.from(frontendModules.values(), jsModulePath => `\
201
201
  return `\
202
202
  // @ts-check
203
203
  require('reflect-metadata');
204
- const { Container } = require('inversify');
204
+ const { Container } = require('@theia/core/shared/inversify');
205
205
 
206
206
  module.exports = Promise.resolve().then(() => {
207
207
  const { frontendApplicationModule } = require('@theia/core/lib/browser/frontend-application-module');