@theia/application-manager 1.34.1 → 1.34.3

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 (35) hide show
  1. package/LICENSE +641 -641
  2. package/README.md +25 -25
  3. package/lib/application-package-manager.d.ts +39 -39
  4. package/lib/application-package-manager.js +188 -188
  5. package/lib/application-process.d.ts +19 -19
  6. package/lib/application-process.js +72 -72
  7. package/lib/expose-loader.d.ts +8 -8
  8. package/lib/expose-loader.js +69 -69
  9. package/lib/generator/abstract-generator.d.ts +19 -19
  10. package/lib/generator/abstract-generator.js +68 -68
  11. package/lib/generator/backend-generator.d.ts +6 -6
  12. package/lib/generator/backend-generator.js +101 -101
  13. package/lib/generator/frontend-generator.d.ts +13 -13
  14. package/lib/generator/frontend-generator.js +261 -261
  15. package/lib/generator/index.d.ts +3 -3
  16. package/lib/generator/index.js +30 -30
  17. package/lib/generator/webpack-generator.d.ts +10 -10
  18. package/lib/generator/webpack-generator.js +298 -298
  19. package/lib/index.d.ts +3 -3
  20. package/lib/index.js +30 -30
  21. package/lib/package.spec.js +25 -25
  22. package/lib/rebuild.d.ts +24 -24
  23. package/lib/rebuild.js +306 -306
  24. package/package.json +5 -5
  25. package/src/application-package-manager.ts +228 -228
  26. package/src/application-process.ts +80 -80
  27. package/src/expose-loader.ts +80 -80
  28. package/src/generator/abstract-generator.ts +82 -82
  29. package/src/generator/backend-generator.ts +103 -103
  30. package/src/generator/frontend-generator.ts +271 -271
  31. package/src/generator/index.ts +19 -19
  32. package/src/generator/webpack-generator.ts +304 -304
  33. package/src/index.ts +19 -19
  34. package/src/package.spec.ts +28 -28
  35. package/src/rebuild.ts +342 -342
@@ -1,304 +1,304 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2017 TypeFox and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import * as paths from 'path';
18
- import * as fs from 'fs-extra';
19
- import { AbstractGenerator } from './abstract-generator';
20
-
21
- export class WebpackGenerator extends AbstractGenerator {
22
-
23
- async generate(): Promise<void> {
24
- await this.write(this.genConfigPath, this.compileWebpackConfig());
25
- if (await this.shouldGenerateUserWebpackConfig()) {
26
- await this.write(this.configPath, this.compileUserWebpackConfig());
27
- }
28
- }
29
-
30
- protected async shouldGenerateUserWebpackConfig(): Promise<boolean> {
31
- if (!(await fs.pathExists(this.configPath))) {
32
- return true;
33
- }
34
- const content = await fs.readFile(this.configPath, 'utf8');
35
- return content.indexOf('gen-webpack') === -1;
36
- }
37
-
38
- get configPath(): string {
39
- return this.pck.path('webpack.config.js');
40
- }
41
-
42
- get genConfigPath(): string {
43
- return this.pck.path('gen-webpack.config.js');
44
- }
45
-
46
- protected resolve(moduleName: string, path: string): string {
47
- return this.pck.resolveModulePath(moduleName, path).split(paths.sep).join('/');
48
- }
49
-
50
- protected compileWebpackConfig(): string {
51
- return `/**
52
- * Don't touch this file. It will be regenerated by theia build.
53
- * To customize webpack configuration change ${this.configPath}
54
- */
55
- // @ts-check
56
- const path = require('path');
57
- const webpack = require('webpack');
58
- const yargs = require('yargs');
59
- const CopyWebpackPlugin = require('copy-webpack-plugin');
60
- const CompressionPlugin = require('compression-webpack-plugin')
61
- const MiniCssExtractPlugin = require('mini-css-extract-plugin')
62
-
63
- const outputPath = path.resolve(__dirname, 'lib');
64
- const { mode, staticCompression } = yargs.option('mode', {
65
- description: "Mode to use",
66
- choices: ["development", "production"],
67
- default: "production"
68
- }).option('static-compression', {
69
- description: 'Controls whether to enable compression of static artifacts.',
70
- type: 'boolean',
71
- default: true
72
- }).argv;
73
- const development = mode === 'development';
74
-
75
- const plugins = [
76
- new CopyWebpackPlugin({
77
- patterns: [{
78
- // copy secondary window html file to lib folder
79
- from: path.resolve(__dirname, 'src-gen/frontend/secondary-window.html')
80
- }]
81
- }),
82
- new webpack.ProvidePlugin({
83
- // the Buffer class doesn't exist in the browser but some dependencies rely on it
84
- Buffer: ['buffer', 'Buffer']
85
- })
86
- ];
87
- // it should go after copy-plugin in order to compress monaco as well
88
- if (staticCompression) {
89
- plugins.push(new CompressionPlugin({}));
90
- }
91
-
92
- module.exports = [{
93
- mode,
94
- plugins,
95
- devtool: 'source-map',
96
- entry: {
97
- bundle: path.resolve(__dirname, 'src-gen/frontend/index.js'),
98
- ${this.ifMonaco(() => "'editor.worker': '@theia/monaco-editor-core/esm/vs/editor/editor.worker.js'")}
99
- },
100
- output: {
101
- filename: '[name].js',
102
- path: outputPath,
103
- devtoolModuleFilenameTemplate: 'webpack:///[resource-path]?[loaders]',
104
- globalObject: 'self'
105
- },
106
- target: '${this.ifBrowser('web', 'electron-renderer')}',
107
- cache: staticCompression,
108
- module: {
109
- rules: [
110
- {
111
- // Removes the host check in PhosphorJS to enable moving widgets to secondary windows.
112
- test: /widget\\.js$/,
113
- loader: 'string-replace-loader',
114
- include: /node_modules[\\\\/]@phosphor[\\\\/]widgets[\\\\/]lib/,
115
- options: {
116
- multiple: [
117
- {
118
- search: /document\\.body\\.contains\\(widget.node\\)/gm,
119
- replace: 'widget.node.ownerDocument.body.contains(widget.node)'
120
- },
121
- {
122
- search: /\\!document\\.body\\.contains\\(host\\)/gm,
123
- replace: ' !host.ownerDocument.body.contains(host)'
124
- }
125
- ]
126
- }
127
- },
128
- {
129
- test: /\\.css$/,
130
- exclude: /materialcolors\\.css$|\\.useable\\.css$/,
131
- use: ['style-loader', 'css-loader']
132
- },
133
- {
134
- test: /materialcolors\\.css$|\\.useable\\.css$/,
135
- use: [
136
- {
137
- loader: 'style-loader',
138
- options: {
139
- esModule: false,
140
- injectType: 'lazySingletonStyleTag',
141
- attributes: {
142
- id: 'theia-theme'
143
- }
144
- }
145
- },
146
- 'css-loader'
147
- ]
148
- },
149
- {
150
- test: /\\.(ttf|eot|svg)(\\?v=\\d+\\.\\d+\\.\\d+)?$/,
151
- type: 'asset',
152
- parser: {
153
- dataUrlCondition: {
154
- maxSize: 10000,
155
- }
156
- },
157
- generator: {
158
- dataUrl: {
159
- mimetype: 'image/svg+xml'
160
- }
161
- }
162
- },
163
- {
164
- test: /\\.(jpg|png|gif)$/,
165
- type: 'asset/resource',
166
- generator: {
167
- filename: '[hash].[ext]'
168
- }
169
- },
170
- {
171
- // see https://github.com/eclipse-theia/theia/issues/556
172
- test: /source-map-support/,
173
- loader: 'ignore-loader'
174
- },
175
- {
176
- test: /\\.js$/,
177
- enforce: 'pre',
178
- loader: 'source-map-loader',
179
- exclude: /jsonc-parser|fast-plist|onigasm/
180
- },
181
- {
182
- test: /\\.woff(2)?(\\?v=[0-9]\\.[0-9]\\.[0-9])?$/,
183
- type: 'asset',
184
- parser: {
185
- dataUrlCondition: {
186
- maxSize: 10000,
187
- }
188
- },
189
- generator: {
190
- dataUrl: {
191
- mimetype: 'image/svg+xml'
192
- }
193
- }
194
- },
195
- {
196
- test: /node_modules[\\\\|\/](vscode-languageserver-types|vscode-uri|jsonc-parser|vscode-languageserver-protocol)/,
197
- loader: 'umd-compat-loader'
198
- },
199
- {
200
- test: /\\.wasm$/,
201
- type: 'asset/resource'
202
- },
203
- {
204
- test: /\\.plist$/,
205
- type: 'asset/resource'
206
- }
207
- ]
208
- },
209
- resolve: {
210
- fallback: {
211
- 'child_process': false,
212
- 'crypto': false,
213
- 'net': false,
214
- 'path': require.resolve('path-browserify'),
215
- 'process': false,
216
- 'os': false,
217
- 'timers': false
218
- },
219
- extensions: ['.js']
220
- },
221
- stats: {
222
- warnings: true,
223
- children: true
224
- },
225
- ignoreWarnings: [
226
- // Some packages do not have source maps, that's ok
227
- /Failed to parse source map/,
228
- {
229
- // Monaco uses 'require' in a non-standard way
230
- module: /@theia\\/monaco-editor-core/,
231
- message: /require function is used in a way in which dependencies cannot be statically extracted/
232
- }
233
- ]
234
- },
235
- {
236
- mode,
237
- plugins: [
238
- new MiniCssExtractPlugin({
239
- // Options similar to the same options in webpackOptions.output
240
- // both options are optional
241
- filename: "[name].css",
242
- chunkFilename: "[id].css",
243
- }),
244
- ],
245
- devtool: 'source-map',
246
- entry: {
247
- "secondary-window": path.resolve(__dirname, 'src-gen/frontend/secondary-index.js'),
248
- },
249
- output: {
250
- filename: '[name].js',
251
- path: outputPath,
252
- devtoolModuleFilenameTemplate: 'webpack:///[resource-path]?[loaders]',
253
- globalObject: 'self'
254
- },
255
- target: 'electron-renderer',
256
- cache: staticCompression,
257
- module: {
258
- rules: [
259
- {
260
- test: /\.css$/i,
261
- use: [MiniCssExtractPlugin.loader, "css-loader"]
262
- }
263
- ]
264
- },
265
- resolve: {
266
- fallback: {
267
- 'child_process': false,
268
- 'crypto': false,
269
- 'net': false,
270
- 'path': require.resolve('path-browserify'),
271
- 'process': false,
272
- 'os': false,
273
- 'timers': false
274
- },
275
- extensions: ['.js']
276
- },
277
- stats: {
278
- warnings: true,
279
- children: true
280
- }
281
- }];`;
282
- }
283
-
284
- protected compileUserWebpackConfig(): string {
285
- return `/**
286
- * This file can be edited to customize webpack configuration.
287
- * To reset delete this file and rerun theia build again.
288
- */
289
- // @ts-check
290
- const config = require('./${paths.basename(this.genConfigPath)}');
291
-
292
- /**
293
- * Expose bundled modules on window.theia.moduleName namespace, e.g.
294
- * window['theia']['@theia/core/lib/common/uri'].
295
- * Such syntax can be used by external code, for instance, for testing.
296
- config.module.rules.push({
297
- test: /\\.js$/,
298
- loader: require.resolve('@theia/application-manager/lib/expose-loader')
299
- }); */
300
-
301
- module.exports = config;`;
302
- }
303
-
304
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2017 TypeFox and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import * as paths from 'path';
18
+ import * as fs from 'fs-extra';
19
+ import { AbstractGenerator } from './abstract-generator';
20
+
21
+ export class WebpackGenerator extends AbstractGenerator {
22
+
23
+ async generate(): Promise<void> {
24
+ await this.write(this.genConfigPath, this.compileWebpackConfig());
25
+ if (await this.shouldGenerateUserWebpackConfig()) {
26
+ await this.write(this.configPath, this.compileUserWebpackConfig());
27
+ }
28
+ }
29
+
30
+ protected async shouldGenerateUserWebpackConfig(): Promise<boolean> {
31
+ if (!(await fs.pathExists(this.configPath))) {
32
+ return true;
33
+ }
34
+ const content = await fs.readFile(this.configPath, 'utf8');
35
+ return content.indexOf('gen-webpack') === -1;
36
+ }
37
+
38
+ get configPath(): string {
39
+ return this.pck.path('webpack.config.js');
40
+ }
41
+
42
+ get genConfigPath(): string {
43
+ return this.pck.path('gen-webpack.config.js');
44
+ }
45
+
46
+ protected resolve(moduleName: string, path: string): string {
47
+ return this.pck.resolveModulePath(moduleName, path).split(paths.sep).join('/');
48
+ }
49
+
50
+ protected compileWebpackConfig(): string {
51
+ return `/**
52
+ * Don't touch this file. It will be regenerated by theia build.
53
+ * To customize webpack configuration change ${this.configPath}
54
+ */
55
+ // @ts-check
56
+ const path = require('path');
57
+ const webpack = require('webpack');
58
+ const yargs = require('yargs');
59
+ const CopyWebpackPlugin = require('copy-webpack-plugin');
60
+ const CompressionPlugin = require('compression-webpack-plugin')
61
+ const MiniCssExtractPlugin = require('mini-css-extract-plugin')
62
+
63
+ const outputPath = path.resolve(__dirname, 'lib');
64
+ const { mode, staticCompression } = yargs.option('mode', {
65
+ description: "Mode to use",
66
+ choices: ["development", "production"],
67
+ default: "production"
68
+ }).option('static-compression', {
69
+ description: 'Controls whether to enable compression of static artifacts.',
70
+ type: 'boolean',
71
+ default: true
72
+ }).argv;
73
+ const development = mode === 'development';
74
+
75
+ const plugins = [
76
+ new CopyWebpackPlugin({
77
+ patterns: [{
78
+ // copy secondary window html file to lib folder
79
+ from: path.resolve(__dirname, 'src-gen/frontend/secondary-window.html')
80
+ }]
81
+ }),
82
+ new webpack.ProvidePlugin({
83
+ // the Buffer class doesn't exist in the browser but some dependencies rely on it
84
+ Buffer: ['buffer', 'Buffer']
85
+ })
86
+ ];
87
+ // it should go after copy-plugin in order to compress monaco as well
88
+ if (staticCompression) {
89
+ plugins.push(new CompressionPlugin({}));
90
+ }
91
+
92
+ module.exports = [{
93
+ mode,
94
+ plugins,
95
+ devtool: 'source-map',
96
+ entry: {
97
+ bundle: path.resolve(__dirname, 'src-gen/frontend/index.js'),
98
+ ${this.ifMonaco(() => "'editor.worker': '@theia/monaco-editor-core/esm/vs/editor/editor.worker.js'")}
99
+ },
100
+ output: {
101
+ filename: '[name].js',
102
+ path: outputPath,
103
+ devtoolModuleFilenameTemplate: 'webpack:///[resource-path]?[loaders]',
104
+ globalObject: 'self'
105
+ },
106
+ target: '${this.ifBrowser('web', 'electron-renderer')}',
107
+ cache: staticCompression,
108
+ module: {
109
+ rules: [
110
+ {
111
+ // Removes the host check in PhosphorJS to enable moving widgets to secondary windows.
112
+ test: /widget\\.js$/,
113
+ loader: 'string-replace-loader',
114
+ include: /node_modules[\\\\/]@phosphor[\\\\/]widgets[\\\\/]lib/,
115
+ options: {
116
+ multiple: [
117
+ {
118
+ search: /document\\.body\\.contains\\(widget.node\\)/gm,
119
+ replace: 'widget.node.ownerDocument.body.contains(widget.node)'
120
+ },
121
+ {
122
+ search: /\\!document\\.body\\.contains\\(host\\)/gm,
123
+ replace: ' !host.ownerDocument.body.contains(host)'
124
+ }
125
+ ]
126
+ }
127
+ },
128
+ {
129
+ test: /\\.css$/,
130
+ exclude: /materialcolors\\.css$|\\.useable\\.css$/,
131
+ use: ['style-loader', 'css-loader']
132
+ },
133
+ {
134
+ test: /materialcolors\\.css$|\\.useable\\.css$/,
135
+ use: [
136
+ {
137
+ loader: 'style-loader',
138
+ options: {
139
+ esModule: false,
140
+ injectType: 'lazySingletonStyleTag',
141
+ attributes: {
142
+ id: 'theia-theme'
143
+ }
144
+ }
145
+ },
146
+ 'css-loader'
147
+ ]
148
+ },
149
+ {
150
+ test: /\\.(ttf|eot|svg)(\\?v=\\d+\\.\\d+\\.\\d+)?$/,
151
+ type: 'asset',
152
+ parser: {
153
+ dataUrlCondition: {
154
+ maxSize: 10000,
155
+ }
156
+ },
157
+ generator: {
158
+ dataUrl: {
159
+ mimetype: 'image/svg+xml'
160
+ }
161
+ }
162
+ },
163
+ {
164
+ test: /\\.(jpg|png|gif)$/,
165
+ type: 'asset/resource',
166
+ generator: {
167
+ filename: '[hash].[ext]'
168
+ }
169
+ },
170
+ {
171
+ // see https://github.com/eclipse-theia/theia/issues/556
172
+ test: /source-map-support/,
173
+ loader: 'ignore-loader'
174
+ },
175
+ {
176
+ test: /\\.js$/,
177
+ enforce: 'pre',
178
+ loader: 'source-map-loader',
179
+ exclude: /jsonc-parser|fast-plist|onigasm/
180
+ },
181
+ {
182
+ test: /\\.woff(2)?(\\?v=[0-9]\\.[0-9]\\.[0-9])?$/,
183
+ type: 'asset',
184
+ parser: {
185
+ dataUrlCondition: {
186
+ maxSize: 10000,
187
+ }
188
+ },
189
+ generator: {
190
+ dataUrl: {
191
+ mimetype: 'image/svg+xml'
192
+ }
193
+ }
194
+ },
195
+ {
196
+ test: /node_modules[\\\\|\/](vscode-languageserver-types|vscode-uri|jsonc-parser|vscode-languageserver-protocol)/,
197
+ loader: 'umd-compat-loader'
198
+ },
199
+ {
200
+ test: /\\.wasm$/,
201
+ type: 'asset/resource'
202
+ },
203
+ {
204
+ test: /\\.plist$/,
205
+ type: 'asset/resource'
206
+ }
207
+ ]
208
+ },
209
+ resolve: {
210
+ fallback: {
211
+ 'child_process': false,
212
+ 'crypto': false,
213
+ 'net': false,
214
+ 'path': require.resolve('path-browserify'),
215
+ 'process': false,
216
+ 'os': false,
217
+ 'timers': false
218
+ },
219
+ extensions: ['.js']
220
+ },
221
+ stats: {
222
+ warnings: true,
223
+ children: true
224
+ },
225
+ ignoreWarnings: [
226
+ // Some packages do not have source maps, that's ok
227
+ /Failed to parse source map/,
228
+ {
229
+ // Monaco uses 'require' in a non-standard way
230
+ module: /@theia\\/monaco-editor-core/,
231
+ message: /require function is used in a way in which dependencies cannot be statically extracted/
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ mode,
237
+ plugins: [
238
+ new MiniCssExtractPlugin({
239
+ // Options similar to the same options in webpackOptions.output
240
+ // both options are optional
241
+ filename: "[name].css",
242
+ chunkFilename: "[id].css",
243
+ }),
244
+ ],
245
+ devtool: 'source-map',
246
+ entry: {
247
+ "secondary-window": path.resolve(__dirname, 'src-gen/frontend/secondary-index.js'),
248
+ },
249
+ output: {
250
+ filename: '[name].js',
251
+ path: outputPath,
252
+ devtoolModuleFilenameTemplate: 'webpack:///[resource-path]?[loaders]',
253
+ globalObject: 'self'
254
+ },
255
+ target: 'electron-renderer',
256
+ cache: staticCompression,
257
+ module: {
258
+ rules: [
259
+ {
260
+ test: /\.css$/i,
261
+ use: [MiniCssExtractPlugin.loader, "css-loader"]
262
+ }
263
+ ]
264
+ },
265
+ resolve: {
266
+ fallback: {
267
+ 'child_process': false,
268
+ 'crypto': false,
269
+ 'net': false,
270
+ 'path': require.resolve('path-browserify'),
271
+ 'process': false,
272
+ 'os': false,
273
+ 'timers': false
274
+ },
275
+ extensions: ['.js']
276
+ },
277
+ stats: {
278
+ warnings: true,
279
+ children: true
280
+ }
281
+ }];`;
282
+ }
283
+
284
+ protected compileUserWebpackConfig(): string {
285
+ return `/**
286
+ * This file can be edited to customize webpack configuration.
287
+ * To reset delete this file and rerun theia build again.
288
+ */
289
+ // @ts-check
290
+ const config = require('./${paths.basename(this.genConfigPath)}');
291
+
292
+ /**
293
+ * Expose bundled modules on window.theia.moduleName namespace, e.g.
294
+ * window['theia']['@theia/core/lib/common/uri'].
295
+ * Such syntax can be used by external code, for instance, for testing.
296
+ config.module.rules.push({
297
+ test: /\\.js$/,
298
+ loader: require.resolve('@theia/application-manager/lib/expose-loader')
299
+ }); */
300
+
301
+ module.exports = config;`;
302
+ }
303
+
304
+ }
package/src/index.ts CHANGED
@@ -1,19 +1,19 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2018 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- export * from './rebuild';
18
- export * from './application-package-manager';
19
- export * from './application-process';
1
+ // *****************************************************************************
2
+ // Copyright (C) 2018 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ export * from './rebuild';
18
+ export * from './application-package-manager';
19
+ export * from './application-process';