@theia/application-package 1.45.1 → 1.46.0-next.72

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.
Files changed (38) hide show
  1. package/README.md +25 -25
  2. package/lib/api.d.ts +5 -5
  3. package/lib/api.js +23 -23
  4. package/lib/application-package.d.ts +88 -82
  5. package/lib/application-package.d.ts.map +1 -1
  6. package/lib/application-package.js +262 -232
  7. package/lib/application-package.js.map +1 -1
  8. package/lib/application-package.spec.d.ts +1 -1
  9. package/lib/application-package.spec.js +57 -57
  10. package/lib/application-props.d.ts +172 -171
  11. package/lib/application-props.d.ts.map +1 -1
  12. package/lib/application-props.js +102 -101
  13. package/lib/application-props.js.map +1 -1
  14. package/lib/environment.d.ts +39 -39
  15. package/lib/environment.js +73 -73
  16. package/lib/extension-package-collector.d.ts +15 -15
  17. package/lib/extension-package-collector.js +76 -76
  18. package/lib/extension-package.d.ts +65 -63
  19. package/lib/extension-package.d.ts.map +1 -1
  20. package/lib/extension-package.js +176 -176
  21. package/lib/extension-package.js.map +1 -1
  22. package/lib/index.d.ts +6 -6
  23. package/lib/index.js +33 -33
  24. package/lib/json-file.d.ts +3 -3
  25. package/lib/json-file.js +26 -26
  26. package/lib/npm-registry.d.ts +73 -73
  27. package/lib/npm-registry.js +101 -101
  28. package/package.json +5 -5
  29. package/src/api.ts +21 -21
  30. package/src/application-package.spec.ts +62 -62
  31. package/src/application-package.ts +334 -297
  32. package/src/application-props.ts +264 -263
  33. package/src/environment.ts +76 -76
  34. package/src/extension-package-collector.ts +83 -83
  35. package/src/extension-package.ts +223 -221
  36. package/src/index.ts +22 -22
  37. package/src/json-file.ts +25 -25
  38. package/src/npm-registry.ts +161 -161
@@ -1,58 +1,58 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2020 Maksim Ryzhikov and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- const assert = require("assert");
19
- const temp = require("temp");
20
- const fs = require("fs-extra");
21
- const path = require("path");
22
- const application_package_1 = require("./application-package");
23
- const application_props_1 = require("./application-props");
24
- const sinon = require("sinon");
25
- const track = temp.track();
26
- const sandbox = sinon.createSandbox();
27
- describe('application-package', function () {
28
- after(() => {
29
- sandbox.restore();
30
- track.cleanupSync();
31
- });
32
- it('should print warning if user set unknown target in package.json and use browser as a default value', function () {
33
- const warn = sandbox.stub(console, 'warn');
34
- const root = createProjectWithTarget('foo');
35
- const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root });
36
- assert.deepStrictEqual(applicationPackage.target, application_props_1.ApplicationProps.ApplicationTarget.browser);
37
- assert.deepStrictEqual(warn.called, true);
38
- });
39
- it('should set target from package.json', function () {
40
- const target = 'electron';
41
- const root = createProjectWithTarget(target);
42
- const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root });
43
- assert.deepStrictEqual(applicationPackage.target, target);
44
- });
45
- it('should prefer target from passed options over target from package.json', function () {
46
- const pckTarget = 'electron';
47
- const optTarget = 'browser';
48
- const root = createProjectWithTarget(pckTarget);
49
- const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root, appTarget: optTarget });
50
- assert.deepStrictEqual(applicationPackage.target, optTarget);
51
- });
52
- function createProjectWithTarget(target) {
53
- const root = track.mkdirSync('foo-project');
54
- fs.writeFileSync(path.join(root, 'package.json'), `{"theia": {"target": "${target}"}}`);
55
- return root;
56
- }
57
- });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2020 Maksim Ryzhikov and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ const assert = require("assert");
19
+ const temp = require("temp");
20
+ const fs = require("fs-extra");
21
+ const path = require("path");
22
+ const application_package_1 = require("./application-package");
23
+ const application_props_1 = require("./application-props");
24
+ const sinon = require("sinon");
25
+ const track = temp.track();
26
+ const sandbox = sinon.createSandbox();
27
+ describe('application-package', function () {
28
+ after(() => {
29
+ sandbox.restore();
30
+ track.cleanupSync();
31
+ });
32
+ it('should print warning if user set unknown target in package.json and use browser as a default value', function () {
33
+ const warn = sandbox.stub(console, 'warn');
34
+ const root = createProjectWithTarget('foo');
35
+ const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root });
36
+ assert.deepStrictEqual(applicationPackage.target, application_props_1.ApplicationProps.ApplicationTarget.browser);
37
+ assert.deepStrictEqual(warn.called, true);
38
+ });
39
+ it('should set target from package.json', function () {
40
+ const target = 'electron';
41
+ const root = createProjectWithTarget(target);
42
+ const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root });
43
+ assert.deepStrictEqual(applicationPackage.target, target);
44
+ });
45
+ it('should prefer target from passed options over target from package.json', function () {
46
+ const pckTarget = 'electron';
47
+ const optTarget = 'browser';
48
+ const root = createProjectWithTarget(pckTarget);
49
+ const applicationPackage = new application_package_1.ApplicationPackage({ projectPath: root, appTarget: optTarget });
50
+ assert.deepStrictEqual(applicationPackage.target, optTarget);
51
+ });
52
+ function createProjectWithTarget(target) {
53
+ const root = track.mkdirSync('foo-project');
54
+ fs.writeFileSync(path.join(root, 'package.json'), `{"theia": {"target": "${target}"}}`);
55
+ return root;
56
+ }
57
+ });
58
58
  //# sourceMappingURL=application-package.spec.js.map
@@ -1,172 +1,173 @@
1
- import type { BrowserWindowConstructorOptions } from 'electron';
2
- export import deepmerge = require('deepmerge');
3
- export declare type RequiredRecursive<T> = {
4
- [K in keyof T]-?: T[K] extends object ? RequiredRecursive<T[K]> : T[K];
5
- };
6
- /**
7
- * Base configuration for the Theia application.
8
- */
9
- export interface ApplicationConfig {
10
- readonly [key: string]: any;
11
- }
12
- export declare type ElectronFrontendApplicationConfig = RequiredRecursive<ElectronFrontendApplicationConfig.Partial>;
13
- export declare namespace ElectronFrontendApplicationConfig {
14
- const DEFAULT: ElectronFrontendApplicationConfig;
15
- interface Partial {
16
- /**
17
- * Override or add properties to the electron `windowOptions`.
18
- *
19
- * Defaults to `{}`.
20
- */
21
- readonly windowOptions?: BrowserWindowConstructorOptions;
22
- /**
23
- * Whether or not to show an empty Electron window as early as possible.
24
- *
25
- * Defaults to `true`.
26
- */
27
- readonly showWindowEarly?: boolean;
28
- }
29
- }
30
- export declare type DefaultTheme = string | Readonly<{
31
- light: string;
32
- dark: string;
33
- }>;
34
- export declare namespace DefaultTheme {
35
- function defaultForOSTheme(theme: DefaultTheme): string;
36
- function defaultBackgroundColor(dark?: boolean): string;
37
- }
38
- /**
39
- * Application configuration for the frontend. The following properties will be injected into the `index.html`.
40
- */
41
- export declare type FrontendApplicationConfig = RequiredRecursive<FrontendApplicationConfig.Partial>;
42
- export declare namespace FrontendApplicationConfig {
43
- const DEFAULT: FrontendApplicationConfig;
44
- interface Partial extends ApplicationConfig {
45
- /**
46
- * The default theme for the application.
47
- *
48
- * Defaults to `dark` if the OS's theme is dark. Otherwise `light`.
49
- */
50
- readonly defaultTheme?: DefaultTheme;
51
- /**
52
- * The default icon theme for the application.
53
- *
54
- * Defaults to `none`.
55
- */
56
- readonly defaultIconTheme?: string;
57
- /**
58
- * The name of the application.
59
- *
60
- * Defaults to `Eclipse Theia`.
61
- */
62
- readonly applicationName?: string;
63
- /**
64
- * Electron specific configuration.
65
- *
66
- * Defaults to `ElectronFrontendApplicationConfig.DEFAULT`.
67
- */
68
- readonly electron?: ElectronFrontendApplicationConfig.Partial;
69
- /**
70
- * The default locale for the application.
71
- *
72
- * Defaults to "".
73
- */
74
- readonly defaultLocale?: string;
75
- /**
76
- * When `true`, the application will validate the JSON schema of the preferences on start
77
- * and log warnings to the console if the schema is not valid.
78
- *
79
- * Defaults to `true`.
80
- */
81
- readonly validatePreferencesSchema?: boolean;
82
- /**
83
- * When 'true', the window will reload in case the front end reconnects to a back-end,
84
- * but the back end does not have a connection context for this front end anymore.
85
- */
86
- readonly reloadOnReconnect?: boolean;
87
- }
88
- }
89
- /**
90
- * Application configuration for the backend.
91
- */
92
- export declare type BackendApplicationConfig = RequiredRecursive<BackendApplicationConfig.Partial>;
93
- export declare namespace BackendApplicationConfig {
94
- const DEFAULT: BackendApplicationConfig;
95
- interface Partial extends ApplicationConfig {
96
- /**
97
- * If true and in Electron mode, only one instance of the application is allowed to run at a time.
98
- *
99
- * Defaults to `false`.
100
- */
101
- readonly singleInstance?: boolean;
102
- /**
103
- * The time in ms the connection context will be preserved for reconnection after a front end disconnects.
104
- */
105
- readonly frontendConnectionTimeout?: number;
106
- }
107
- }
108
- /**
109
- * Configuration for the generator.
110
- */
111
- export declare type GeneratorConfig = RequiredRecursive<GeneratorConfig.Partial>;
112
- export declare namespace GeneratorConfig {
113
- const DEFAULT: GeneratorConfig;
114
- interface Partial {
115
- /**
116
- * Template to use for extra preload content markup (file path or HTML).
117
- *
118
- * Defaults to `''`.
119
- */
120
- readonly preloadTemplate?: string;
121
- }
122
- }
123
- export interface NpmRegistryProps {
124
- /**
125
- * Defaults to `false`.
126
- */
127
- readonly next: boolean;
128
- /**
129
- * Defaults to `https://registry.npmjs.org/`.
130
- */
131
- readonly registry: string;
132
- }
133
- export declare namespace NpmRegistryProps {
134
- const DEFAULT: NpmRegistryProps;
135
- }
136
- /**
137
- * Representation of all backend and frontend related Theia extension and application properties.
138
- */
139
- export interface ApplicationProps extends NpmRegistryProps {
140
- readonly [key: string]: any;
141
- /**
142
- * Whether the extension targets the browser or electron. Defaults to `browser`.
143
- */
144
- readonly target: ApplicationProps.Target;
145
- /**
146
- * Frontend related properties.
147
- */
148
- readonly frontend: {
149
- readonly config: FrontendApplicationConfig;
150
- };
151
- /**
152
- * Backend specific properties.
153
- */
154
- readonly backend: {
155
- readonly config: BackendApplicationConfig;
156
- };
157
- /**
158
- * Generator specific properties.
159
- */
160
- readonly generator: {
161
- readonly config: GeneratorConfig;
162
- };
163
- }
164
- export declare namespace ApplicationProps {
165
- type Target = keyof typeof ApplicationTarget;
166
- enum ApplicationTarget {
167
- browser = "browser",
168
- electron = "electron"
169
- }
170
- const DEFAULT: ApplicationProps;
171
- }
1
+ import type { BrowserWindowConstructorOptions } from 'electron';
2
+ export import deepmerge = require('deepmerge');
3
+ export declare type RequiredRecursive<T> = {
4
+ [K in keyof T]-?: T[K] extends object ? RequiredRecursive<T[K]> : T[K];
5
+ };
6
+ /**
7
+ * Base configuration for the Theia application.
8
+ */
9
+ export interface ApplicationConfig {
10
+ readonly [key: string]: any;
11
+ }
12
+ export declare type ElectronFrontendApplicationConfig = RequiredRecursive<ElectronFrontendApplicationConfig.Partial>;
13
+ export declare namespace ElectronFrontendApplicationConfig {
14
+ const DEFAULT: ElectronFrontendApplicationConfig;
15
+ interface Partial {
16
+ /**
17
+ * Override or add properties to the electron `windowOptions`.
18
+ *
19
+ * Defaults to `{}`.
20
+ */
21
+ readonly windowOptions?: BrowserWindowConstructorOptions;
22
+ /**
23
+ * Whether or not to show an empty Electron window as early as possible.
24
+ *
25
+ * Defaults to `true`.
26
+ */
27
+ readonly showWindowEarly?: boolean;
28
+ }
29
+ }
30
+ export declare type DefaultTheme = string | Readonly<{
31
+ light: string;
32
+ dark: string;
33
+ }>;
34
+ export declare namespace DefaultTheme {
35
+ function defaultForOSTheme(theme: DefaultTheme): string;
36
+ function defaultBackgroundColor(dark?: boolean): string;
37
+ }
38
+ /**
39
+ * Application configuration for the frontend. The following properties will be injected into the `index.html`.
40
+ */
41
+ export declare type FrontendApplicationConfig = RequiredRecursive<FrontendApplicationConfig.Partial>;
42
+ export declare namespace FrontendApplicationConfig {
43
+ const DEFAULT: FrontendApplicationConfig;
44
+ interface Partial extends ApplicationConfig {
45
+ /**
46
+ * The default theme for the application.
47
+ *
48
+ * Defaults to `dark` if the OS's theme is dark. Otherwise `light`.
49
+ */
50
+ readonly defaultTheme?: DefaultTheme;
51
+ /**
52
+ * The default icon theme for the application.
53
+ *
54
+ * Defaults to `none`.
55
+ */
56
+ readonly defaultIconTheme?: string;
57
+ /**
58
+ * The name of the application.
59
+ *
60
+ * Defaults to `Eclipse Theia`.
61
+ */
62
+ readonly applicationName?: string;
63
+ /**
64
+ * Electron specific configuration.
65
+ *
66
+ * Defaults to `ElectronFrontendApplicationConfig.DEFAULT`.
67
+ */
68
+ readonly electron?: ElectronFrontendApplicationConfig.Partial;
69
+ /**
70
+ * The default locale for the application.
71
+ *
72
+ * Defaults to "".
73
+ */
74
+ readonly defaultLocale?: string;
75
+ /**
76
+ * When `true`, the application will validate the JSON schema of the preferences on start
77
+ * and log warnings to the console if the schema is not valid.
78
+ *
79
+ * Defaults to `true`.
80
+ */
81
+ readonly validatePreferencesSchema?: boolean;
82
+ /**
83
+ * When 'true', the window will reload in case the front end reconnects to a back-end,
84
+ * but the back end does not have a connection context for this front end anymore.
85
+ */
86
+ readonly reloadOnReconnect?: boolean;
87
+ }
88
+ }
89
+ /**
90
+ * Application configuration for the backend.
91
+ */
92
+ export declare type BackendApplicationConfig = RequiredRecursive<BackendApplicationConfig.Partial>;
93
+ export declare namespace BackendApplicationConfig {
94
+ const DEFAULT: BackendApplicationConfig;
95
+ interface Partial extends ApplicationConfig {
96
+ /**
97
+ * If true and in Electron mode, only one instance of the application is allowed to run at a time.
98
+ *
99
+ * Defaults to `false`.
100
+ */
101
+ readonly singleInstance?: boolean;
102
+ /**
103
+ * The time in ms the connection context will be preserved for reconnection after a front end disconnects.
104
+ */
105
+ readonly frontendConnectionTimeout?: number;
106
+ }
107
+ }
108
+ /**
109
+ * Configuration for the generator.
110
+ */
111
+ export declare type GeneratorConfig = RequiredRecursive<GeneratorConfig.Partial>;
112
+ export declare namespace GeneratorConfig {
113
+ const DEFAULT: GeneratorConfig;
114
+ interface Partial {
115
+ /**
116
+ * Template to use for extra preload content markup (file path or HTML).
117
+ *
118
+ * Defaults to `''`.
119
+ */
120
+ readonly preloadTemplate?: string;
121
+ }
122
+ }
123
+ export interface NpmRegistryProps {
124
+ /**
125
+ * Defaults to `false`.
126
+ */
127
+ readonly next: boolean;
128
+ /**
129
+ * Defaults to `https://registry.npmjs.org/`.
130
+ */
131
+ readonly registry: string;
132
+ }
133
+ export declare namespace NpmRegistryProps {
134
+ const DEFAULT: NpmRegistryProps;
135
+ }
136
+ /**
137
+ * Representation of all backend and frontend related Theia extension and application properties.
138
+ */
139
+ export interface ApplicationProps extends NpmRegistryProps {
140
+ readonly [key: string]: any;
141
+ /**
142
+ * Whether the extension targets the browser or electron. Defaults to `browser`.
143
+ */
144
+ readonly target: ApplicationProps.Target;
145
+ /**
146
+ * Frontend related properties.
147
+ */
148
+ readonly frontend: {
149
+ readonly config: FrontendApplicationConfig;
150
+ };
151
+ /**
152
+ * Backend specific properties.
153
+ */
154
+ readonly backend: {
155
+ readonly config: BackendApplicationConfig;
156
+ };
157
+ /**
158
+ * Generator specific properties.
159
+ */
160
+ readonly generator: {
161
+ readonly config: GeneratorConfig;
162
+ };
163
+ }
164
+ export declare namespace ApplicationProps {
165
+ type Target = `${ApplicationTarget}`;
166
+ enum ApplicationTarget {
167
+ browser = "browser",
168
+ electron = "electron",
169
+ browserOnly = "browser-only"
170
+ }
171
+ const DEFAULT: ApplicationProps;
172
+ }
172
173
  //# sourceMappingURL=application-props.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"application-props.d.ts","sourceRoot":"","sources":["../src/application-props.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"application-props.d.ts","sourceRoot":"","sources":["../src/application-props.ts"],"names":[],"mappings":"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"}