@theia/application-package 1.45.0 → 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
package/README.md CHANGED
@@ -1,25 +1,25 @@
1
- <div align='center'>
2
-
3
- <br />
4
-
5
- <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
-
7
- <h2>ECLIPSE THEIA - APPLICATION-PACKAGE</h2>
8
-
9
- <hr />
10
-
11
- </div>
12
-
13
- ## Additional Information
14
-
15
- - [Theia - GitHub](https://github.com/eclipse-theia/theia)
16
- - [Theia - Website](https://theia-ide.org/)
17
-
18
- ## License
19
-
20
- - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
21
- - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
22
-
23
- ## Trademark
24
- "Theia" is a trademark of the Eclipse Foundation
25
- https://www.eclipse.org/theia
1
+ <div align='center'>
2
+
3
+ <br />
4
+
5
+ <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
+
7
+ <h2>ECLIPSE THEIA - APPLICATION-PACKAGE</h2>
8
+
9
+ <hr />
10
+
11
+ </div>
12
+
13
+ ## Additional Information
14
+
15
+ - [Theia - GitHub](https://github.com/eclipse-theia/theia)
16
+ - [Theia - Website](https://theia-ide.org/)
17
+
18
+ ## License
19
+
20
+ - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
21
+ - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
22
+
23
+ ## Trademark
24
+ "Theia" is a trademark of the Eclipse Foundation
25
+ https://www.eclipse.org/theia
package/lib/api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- /**
2
- * The default supported API version the framework supports.
3
- * The version should be in the format `x.y.z`.
4
- */
5
- export declare const DEFAULT_SUPPORTED_API_VERSION = "1.84.2";
1
+ /**
2
+ * The default supported API version the framework supports.
3
+ * The version should be in the format `x.y.z`.
4
+ */
5
+ export declare const DEFAULT_SUPPORTED_API_VERSION = "1.85.1";
6
6
  //# sourceMappingURL=api.d.ts.map
package/lib/api.js CHANGED
@@ -1,24 +1,24 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2021 Ericsson 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
- exports.DEFAULT_SUPPORTED_API_VERSION = void 0;
19
- /**
20
- * The default supported API version the framework supports.
21
- * The version should be in the format `x.y.z`.
22
- */
23
- exports.DEFAULT_SUPPORTED_API_VERSION = '1.84.2';
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2021 Ericsson 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
+ exports.DEFAULT_SUPPORTED_API_VERSION = void 0;
19
+ /**
20
+ * The default supported API version the framework supports.
21
+ * The version should be in the format `x.y.z`.
22
+ */
23
+ exports.DEFAULT_SUPPORTED_API_VERSION = '1.85.1';
24
24
  //# sourceMappingURL=api.js.map
@@ -1,83 +1,89 @@
1
- import { NpmRegistry, NodePackage, PublishedNodePackage } from './npm-registry';
2
- import { Extension, ExtensionPackage, ExtensionPackageOptions } from './extension-package';
3
- import { ApplicationProps } from './application-props';
4
- export declare type ApplicationLog = (message?: any, ...optionalParams: any[]) => void;
5
- export declare class ApplicationPackageOptions {
6
- readonly projectPath: string;
7
- readonly log?: ApplicationLog;
8
- readonly error?: ApplicationLog;
9
- readonly registry?: NpmRegistry;
10
- readonly appTarget?: ApplicationProps.Target;
11
- }
12
- export declare type ApplicationModuleResolver = (modulePath: string) => string;
13
- export declare class ApplicationPackage {
14
- protected readonly options: ApplicationPackageOptions;
15
- readonly projectPath: string;
16
- readonly log: ApplicationLog;
17
- readonly error: ApplicationLog;
18
- constructor(options: ApplicationPackageOptions);
19
- protected _registry: NpmRegistry | undefined;
20
- get registry(): NpmRegistry;
21
- get target(): ApplicationProps.Target;
22
- protected _props: ApplicationProps | undefined;
23
- get props(): ApplicationProps;
24
- protected _pck: NodePackage | undefined;
25
- get pck(): NodePackage;
26
- protected _frontendModules: Map<string, string> | undefined;
27
- protected _frontendPreloadModules: Map<string, string> | undefined;
28
- protected _frontendElectronModules: Map<string, string> | undefined;
29
- protected _secondaryWindowModules: Map<string, string> | undefined;
30
- protected _backendModules: Map<string, string> | undefined;
31
- protected _backendElectronModules: Map<string, string> | undefined;
32
- protected _electronMainModules: Map<string, string> | undefined;
33
- protected _preloadModules: Map<string, string> | undefined;
34
- protected _extensionPackages: ReadonlyArray<ExtensionPackage> | undefined;
35
- /**
36
- * Extension packages in the topological order.
37
- */
38
- get extensionPackages(): ReadonlyArray<ExtensionPackage>;
39
- getExtensionPackage(extension: string): ExtensionPackage | undefined;
40
- findExtensionPackage(extension: string): Promise<ExtensionPackage | undefined>;
41
- /**
42
- * Resolve an extension name to its associated package
43
- * @param extension the name of the extension's package as defined in "dependencies" (might be aliased)
44
- * @returns the extension package
45
- */
46
- resolveExtensionPackage(extension: string): Promise<ExtensionPackage | undefined>;
47
- protected newExtensionPackage(raw: PublishedNodePackage, options?: ExtensionPackageOptions): ExtensionPackage;
48
- get frontendPreloadModules(): Map<string, string>;
49
- get frontendModules(): Map<string, string>;
50
- get frontendElectronModules(): Map<string, string>;
51
- get secondaryWindowModules(): Map<string, string>;
52
- get backendModules(): Map<string, string>;
53
- get backendElectronModules(): Map<string, string>;
54
- get electronMainModules(): Map<string, string>;
55
- get preloadModules(): Map<string, string>;
56
- protected computeModules<P extends keyof Extension, S extends keyof Extension = P>(primary: P, secondary?: S): Map<string, string>;
57
- relative(path: string): string;
58
- path(...segments: string[]): string;
59
- get packagePath(): string;
60
- lib(...segments: string[]): string;
61
- srcGen(...segments: string[]): string;
62
- backend(...segments: string[]): string;
63
- bundledBackend(...segments: string[]): string;
64
- frontend(...segments: string[]): string;
65
- isBrowser(): boolean;
66
- isElectron(): boolean;
67
- ifBrowser<T>(value: T): T | undefined;
68
- ifBrowser<T>(value: T, defaultValue: T): T;
69
- ifElectron<T>(value: T): T | undefined;
70
- ifElectron<T>(value: T, defaultValue: T): T;
71
- get targetBackendModules(): Map<string, string>;
72
- get targetFrontendModules(): Map<string, string>;
73
- get targetElectronMainModules(): Map<string, string>;
74
- setDependency(name: string, version: string | undefined): boolean;
75
- save(): Promise<void>;
76
- protected _moduleResolver: undefined | ApplicationModuleResolver;
77
- /**
78
- * A node module resolver in the context of the application package.
79
- */
80
- get resolveModule(): ApplicationModuleResolver;
81
- resolveModulePath(moduleName: string, ...segments: string[]): string;
82
- }
1
+ import { NpmRegistry, NodePackage, PublishedNodePackage } from './npm-registry';
2
+ import { Extension, ExtensionPackage, ExtensionPackageOptions } from './extension-package';
3
+ import { ApplicationProps } from './application-props';
4
+ export declare type ApplicationLog = (message?: any, ...optionalParams: any[]) => void;
5
+ export declare class ApplicationPackageOptions {
6
+ readonly projectPath: string;
7
+ readonly log?: ApplicationLog;
8
+ readonly error?: ApplicationLog;
9
+ readonly registry?: NpmRegistry;
10
+ readonly appTarget?: ApplicationProps.Target;
11
+ }
12
+ export declare type ApplicationModuleResolver = (modulePath: string) => string;
13
+ export declare class ApplicationPackage {
14
+ protected readonly options: ApplicationPackageOptions;
15
+ readonly projectPath: string;
16
+ readonly log: ApplicationLog;
17
+ readonly error: ApplicationLog;
18
+ constructor(options: ApplicationPackageOptions);
19
+ protected _registry: NpmRegistry | undefined;
20
+ get registry(): NpmRegistry;
21
+ get target(): ApplicationProps.Target;
22
+ protected _props: ApplicationProps | undefined;
23
+ get props(): ApplicationProps;
24
+ protected _pck: NodePackage | undefined;
25
+ get pck(): NodePackage;
26
+ protected _frontendModules: Map<string, string> | undefined;
27
+ protected _frontendPreloadModules: Map<string, string> | undefined;
28
+ protected _frontendElectronModules: Map<string, string> | undefined;
29
+ protected _secondaryWindowModules: Map<string, string> | undefined;
30
+ protected _backendModules: Map<string, string> | undefined;
31
+ protected _backendElectronModules: Map<string, string> | undefined;
32
+ protected _electronMainModules: Map<string, string> | undefined;
33
+ protected _preloadModules: Map<string, string> | undefined;
34
+ protected _extensionPackages: ReadonlyArray<ExtensionPackage> | undefined;
35
+ /**
36
+ * Extension packages in the topological order.
37
+ */
38
+ get extensionPackages(): ReadonlyArray<ExtensionPackage>;
39
+ getExtensionPackage(extension: string): ExtensionPackage | undefined;
40
+ findExtensionPackage(extension: string): Promise<ExtensionPackage | undefined>;
41
+ /**
42
+ * Resolve an extension name to its associated package
43
+ * @param extension the name of the extension's package as defined in "dependencies" (might be aliased)
44
+ * @returns the extension package
45
+ */
46
+ resolveExtensionPackage(extension: string): Promise<ExtensionPackage | undefined>;
47
+ protected newExtensionPackage(raw: PublishedNodePackage, options?: ExtensionPackageOptions): ExtensionPackage;
48
+ get frontendPreloadModules(): Map<string, string>;
49
+ get frontendOnlyPreloadModules(): Map<string, string>;
50
+ get frontendModules(): Map<string, string>;
51
+ get frontendOnlyModules(): Map<string, string>;
52
+ get frontendElectronModules(): Map<string, string>;
53
+ get secondaryWindowModules(): Map<string, string>;
54
+ get backendModules(): Map<string, string>;
55
+ get backendElectronModules(): Map<string, string>;
56
+ get electronMainModules(): Map<string, string>;
57
+ get preloadModules(): Map<string, string>;
58
+ protected computeModules<P extends keyof Extension, S extends keyof Extension = P>(primary: P, secondary?: S): Map<string, string>;
59
+ relative(path: string): string;
60
+ path(...segments: string[]): string;
61
+ get packagePath(): string;
62
+ lib(...segments: string[]): string;
63
+ srcGen(...segments: string[]): string;
64
+ backend(...segments: string[]): string;
65
+ bundledBackend(...segments: string[]): string;
66
+ frontend(...segments: string[]): string;
67
+ isBrowser(): boolean;
68
+ isElectron(): boolean;
69
+ isBrowserOnly(): boolean;
70
+ ifBrowser<T>(value: T): T | undefined;
71
+ ifBrowser<T>(value: T, defaultValue: T): T;
72
+ ifElectron<T>(value: T): T | undefined;
73
+ ifElectron<T>(value: T, defaultValue: T): T;
74
+ ifBrowserOnly<T>(value: T): T | undefined;
75
+ ifBrowserOnly<T>(value: T, defaultValue: T): T;
76
+ get targetBackendModules(): Map<string, string>;
77
+ get targetFrontendModules(): Map<string, string>;
78
+ get targetFrontendPreloadModules(): Map<string, string>;
79
+ get targetElectronMainModules(): Map<string, string>;
80
+ setDependency(name: string, version: string | undefined): boolean;
81
+ save(): Promise<void>;
82
+ protected _moduleResolver: undefined | ApplicationModuleResolver;
83
+ /**
84
+ * A node module resolver in the context of the application package.
85
+ */
86
+ get resolveModule(): ApplicationModuleResolver;
87
+ resolveModulePath(moduleName: string, ...segments: string[]): string;
88
+ }
83
89
  //# sourceMappingURL=application-package.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"application-package.d.ts","sourceRoot":"","sources":["../src/application-package.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"application-package.d.ts","sourceRoot":"","sources":["../src/application-package.ts"],"names":[],"mappings":"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"}