zephyr-xpack-internal 0.0.49 → 0.0.50
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.
- package/README.md +280 -2
- package/dist/package.json +1 -1
- package/dist/xpack-extract/extract-federated-dependency-pairs.js +5 -3
- package/dist/xpack-extract/extract-federated-dependency-pairs.js.map +1 -1
- package/dist/xpack-extract/mut-webpack-federated-remotes-config.js +5 -1
- package/dist/xpack-extract/mut-webpack-federated-remotes-config.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,3 +1,281 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Zephyr XPack Internal (Internal)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<div align="center">
|
|
4
|
+
|
|
5
|
+
[Zephyr Cloud](https://zephyr-cloud.io) | [Zephyr Docs](https://docs.zephyr-cloud.io) | [Discord](https://zephyr-cloud.io/discord) | [Twitter](https://x.com/ZephyrCloudIO) | [LinkedIn](https://www.linkedin.com/company/zephyr-cloud/)
|
|
6
|
+
|
|
7
|
+
<hr/>
|
|
8
|
+
<img src="https://cdn.prod.website-files.com/669061ee3adb95b628c3acda/66981c766e352fe1f57191e2_Opengraph-zephyr.png" alt="Zephyr Logo" />
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
**Internal Package** - Shared types, Module Federation capabilities, and utilities for bundlers built on top of Webpack or Rspack. This package provides common functionality for Webpack-compatible bundlers.
|
|
12
|
+
|
|
13
|
+
> **Note**: This is an internal package used by Webpack and Rspack plugins. It is not intended for direct use by end users.
|
|
14
|
+
|
|
15
|
+
## Overview
|
|
16
|
+
|
|
17
|
+
The Zephyr XPack Internal package provides shared functionality for Webpack-compatible bundlers:
|
|
18
|
+
|
|
19
|
+
- **Module Federation**: Advanced Module Federation capabilities and utilities
|
|
20
|
+
- **Federation Dashboard**: Build-time analytics and federation insights
|
|
21
|
+
- **XPack Extraction**: Asset and configuration extraction for Webpack/Rspack
|
|
22
|
+
- **Lifecycle Events**: Build lifecycle hooks and event management
|
|
23
|
+
- **Shared Types**: Common TypeScript interfaces and types
|
|
24
|
+
|
|
25
|
+
## Package Structure
|
|
26
|
+
|
|
27
|
+
### Federation Dashboard Legacy (`federation-dashboard-legacy/`)
|
|
28
|
+
|
|
29
|
+
- Legacy Module Federation dashboard functionality
|
|
30
|
+
- Build statistics collection and analysis
|
|
31
|
+
- Dependency graph conversion and visualization
|
|
32
|
+
- Federation metadata processing
|
|
33
|
+
|
|
34
|
+
### Hooks (`hooks/`)
|
|
35
|
+
|
|
36
|
+
- Build lifecycle event hooks
|
|
37
|
+
- Deployment setup and logging configuration
|
|
38
|
+
- Integration points for build processes
|
|
39
|
+
|
|
40
|
+
### Lifecycle Events (`lifecycle-events/`)
|
|
41
|
+
|
|
42
|
+
- Standardized build lifecycle management
|
|
43
|
+
- Event dispatching and handling
|
|
44
|
+
- Plugin coordination during builds
|
|
45
|
+
|
|
46
|
+
### XPack Extract (`xpack-extract/`)
|
|
47
|
+
|
|
48
|
+
- Webpack/Rspack asset extraction utilities
|
|
49
|
+
- Module Federation configuration extraction
|
|
50
|
+
- Runtime code generation for federation
|
|
51
|
+
- Federation dependency analysis
|
|
52
|
+
|
|
53
|
+
## Federation Dashboard
|
|
54
|
+
|
|
55
|
+
Advanced Module Federation analytics and insights:
|
|
56
|
+
|
|
57
|
+
### Build Statistics
|
|
58
|
+
|
|
59
|
+
```typescript
|
|
60
|
+
interface FederationBuildStats {
|
|
61
|
+
modules: ModuleInfo[];
|
|
62
|
+
dependencies: DependencyInfo[];
|
|
63
|
+
remotes: RemoteInfo[];
|
|
64
|
+
exposes: ExposeInfo[];
|
|
65
|
+
shared: SharedInfo[];
|
|
66
|
+
buildTime: number;
|
|
67
|
+
bundleSize: number;
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Dependency Graph Conversion
|
|
72
|
+
|
|
73
|
+
```typescript
|
|
74
|
+
// Convert webpack stats to federation graph
|
|
75
|
+
const graph = convertToGraph(webpackStats, {
|
|
76
|
+
includeModules: true,
|
|
77
|
+
includeDependencies: true,
|
|
78
|
+
includeChunks: true,
|
|
79
|
+
});
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### License Extraction
|
|
83
|
+
|
|
84
|
+
```typescript
|
|
85
|
+
// Extract license information from modules
|
|
86
|
+
const licenses = getLicenses(modules, {
|
|
87
|
+
includeDevDependencies: false,
|
|
88
|
+
groupByLicense: true,
|
|
89
|
+
});
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## Module Federation Utilities
|
|
93
|
+
|
|
94
|
+
### Federation Config Extraction
|
|
95
|
+
|
|
96
|
+
```typescript
|
|
97
|
+
// Extract federation configuration from webpack config
|
|
98
|
+
const federationConfig = extractFederationConfig(webpackConfig);
|
|
99
|
+
|
|
100
|
+
// Iterate through remote configurations
|
|
101
|
+
const remotes = iterateFederatedRemoteConfig(federationConfig);
|
|
102
|
+
|
|
103
|
+
// Process federation dependencies
|
|
104
|
+
const deps = extractFederatedDependencyPairs(config);
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Runtime Code Generation
|
|
108
|
+
|
|
109
|
+
```typescript
|
|
110
|
+
// Create Module Federation runtime code
|
|
111
|
+
const runtimeCode = createMfRuntimeCode({
|
|
112
|
+
remotes: federationConfig.remotes,
|
|
113
|
+
shared: federationConfig.shared,
|
|
114
|
+
exposes: federationConfig.exposes,
|
|
115
|
+
});
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Plugin Detection
|
|
119
|
+
|
|
120
|
+
```typescript
|
|
121
|
+
// Detect Module Federation plugin in webpack config
|
|
122
|
+
const isModuleFederation = isModuleFederationPlugin(plugin);
|
|
123
|
+
|
|
124
|
+
// Extract federation plugin options
|
|
125
|
+
const options = makeCopyOfModuleFederationOptions(plugin);
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Asset Management
|
|
129
|
+
|
|
130
|
+
### Webpack Assets Map
|
|
131
|
+
|
|
132
|
+
```typescript
|
|
133
|
+
// Build comprehensive assets map
|
|
134
|
+
const assetsMap = buildWebpackAssetsMap(compilation, {
|
|
135
|
+
includeSourceMaps: true,
|
|
136
|
+
includeChunks: true,
|
|
137
|
+
includeModules: true,
|
|
138
|
+
});
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Asset Upload
|
|
142
|
+
|
|
143
|
+
```typescript
|
|
144
|
+
// Upload agent for assets
|
|
145
|
+
const uploadAgent = new ZeXpackUploadAgent({
|
|
146
|
+
assets: assetsMap,
|
|
147
|
+
federation: federationConfig,
|
|
148
|
+
buildStats: stats,
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
await uploadAgent.upload();
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## Version Strategy
|
|
155
|
+
|
|
156
|
+
Compute versioning strategy for federated modules:
|
|
157
|
+
|
|
158
|
+
```typescript
|
|
159
|
+
// Compute version strategy for federation
|
|
160
|
+
const versionStrategy = computeVersionStrategy({
|
|
161
|
+
packageJson: packageInfo,
|
|
162
|
+
gitInfo: gitContext,
|
|
163
|
+
buildContext: buildInfo,
|
|
164
|
+
});
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
## Graph Merging
|
|
168
|
+
|
|
169
|
+
Merge multiple federation graphs:
|
|
170
|
+
|
|
171
|
+
```typescript
|
|
172
|
+
// Merge federation graphs from multiple builds
|
|
173
|
+
const mergedGraph = mergeGraphs([hostGraph, remoteGraph1, remoteGraph2], {
|
|
174
|
+
deduplicateModules: true,
|
|
175
|
+
preserveMetadata: true,
|
|
176
|
+
});
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
## Integration with Bundlers
|
|
180
|
+
|
|
181
|
+
### Webpack Integration
|
|
182
|
+
|
|
183
|
+
```typescript
|
|
184
|
+
// Webpack plugin integration
|
|
185
|
+
class ZephyrWebpackPlugin {
|
|
186
|
+
apply(compiler) {
|
|
187
|
+
// Use xpack utilities
|
|
188
|
+
const federationConfig = extractFederationConfig(compiler.options);
|
|
189
|
+
const assetsMap = buildWebpackAssetsMap(compilation);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Rspack Integration
|
|
195
|
+
|
|
196
|
+
```typescript
|
|
197
|
+
// Rspack plugin integration
|
|
198
|
+
class ZephyrRspackPlugin {
|
|
199
|
+
apply(compiler) {
|
|
200
|
+
// Reuse webpack-compatible utilities
|
|
201
|
+
const federationConfig = extractFederationConfig(compiler.options);
|
|
202
|
+
const stats = convertToGraph(compilation.getStats());
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
## Advanced Features
|
|
208
|
+
|
|
209
|
+
### Federation Dashboard Plugin
|
|
210
|
+
|
|
211
|
+
```typescript
|
|
212
|
+
// Advanced federation analytics
|
|
213
|
+
const dashboardPlugin = new FederationDashboardPlugin({
|
|
214
|
+
filename: 'federation-stats.json',
|
|
215
|
+
includeModules: true,
|
|
216
|
+
includeDependencies: true,
|
|
217
|
+
computeVersionStrategy: true,
|
|
218
|
+
});
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### Runtime Requirements
|
|
222
|
+
|
|
223
|
+
```typescript
|
|
224
|
+
// Add runtime requirements for federation
|
|
225
|
+
addRuntimeRequirementToPromiseExternal(compilation, 'federation-runtime');
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Development Utilities
|
|
229
|
+
|
|
230
|
+
### Mock Data
|
|
231
|
+
|
|
232
|
+
- Comprehensive test data for federation scenarios
|
|
233
|
+
- Mock configurations for testing plugins
|
|
234
|
+
- Sample build statistics and dependency graphs
|
|
235
|
+
|
|
236
|
+
### Validation
|
|
237
|
+
|
|
238
|
+
```typescript
|
|
239
|
+
// Validate federation parameters
|
|
240
|
+
const isValid = validateParams({
|
|
241
|
+
federationConfig,
|
|
242
|
+
webpackConfig,
|
|
243
|
+
buildContext,
|
|
244
|
+
});
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
## Usage by Plugins
|
|
248
|
+
|
|
249
|
+
Webpack and Rspack plugins use this package:
|
|
250
|
+
|
|
251
|
+
```typescript
|
|
252
|
+
import { extractFederationConfig, buildWebpackAssetsMap, convertToGraph, FederationDashboardPlugin } from 'zephyr-xpack-internal';
|
|
253
|
+
|
|
254
|
+
// In webpack/rspack plugin
|
|
255
|
+
const federationConfig = extractFederationConfig(compiler.options);
|
|
256
|
+
const assetsMap = buildWebpackAssetsMap(compilation);
|
|
257
|
+
const graph = convertToGraph(stats);
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
## Development
|
|
261
|
+
|
|
262
|
+
For internal development:
|
|
263
|
+
|
|
264
|
+
```bash
|
|
265
|
+
# Build the package
|
|
266
|
+
npm run build
|
|
267
|
+
|
|
268
|
+
# Run tests
|
|
269
|
+
npm run test
|
|
270
|
+
|
|
271
|
+
# Test with mock data
|
|
272
|
+
npm run test:integration
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
## Contributing
|
|
276
|
+
|
|
277
|
+
This is an internal package. Contributions should be made through the main Zephyr plugins repository. Please read our [contributing guidelines](../../CONTRIBUTING.md) for more information.
|
|
278
|
+
|
|
279
|
+
## License
|
|
280
|
+
|
|
281
|
+
Licensed under the Apache-2.0 License. See [LICENSE](LICENSE) for more information.
|
package/dist/package.json
CHANGED
|
@@ -38,7 +38,8 @@ function parseRemotesAsEntries(remotes) {
|
|
|
38
38
|
// Case where remotes are declared as:
|
|
39
39
|
// Record<remote_name: string, remote_version: string | RemotesConfig>
|
|
40
40
|
// e.g. ['remote_name', { url: 'remote_url' }]
|
|
41
|
-
|
|
41
|
+
const version = typeof remote[1] === 'string' ? remote[1] : JSON.stringify(remote[1]);
|
|
42
|
+
remotePairs.push([remote[0], version]);
|
|
42
43
|
}
|
|
43
44
|
else if (typeof remote === 'string') {
|
|
44
45
|
// Case where remotes are declared as string (Nx's default remotes)
|
|
@@ -46,8 +47,9 @@ function parseRemotesAsEntries(remotes) {
|
|
|
46
47
|
}
|
|
47
48
|
else {
|
|
48
49
|
// Fallback case where remotes are nested RemotesConfig objects
|
|
49
|
-
Object.entries(remote).forEach(([name,
|
|
50
|
-
|
|
50
|
+
Object.entries(remote).forEach(([name, config]) => {
|
|
51
|
+
const version = typeof config === 'string' ? config : JSON.stringify(config);
|
|
52
|
+
remotePairs.push([name, version]);
|
|
51
53
|
});
|
|
52
54
|
}
|
|
53
55
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extract-federated-dependency-pairs.js","sourceRoot":"","sources":["../../src/xpack-extract/extract-federated-dependency-pairs.ts"],"names":[],"mappings":";;AAMA,0EA4BC;AAGD,
|
|
1
|
+
{"version":3,"file":"extract-federated-dependency-pairs.js","sourceRoot":"","sources":["../../src/xpack-extract/extract-federated-dependency-pairs.ts"],"names":[],"mappings":";;AAMA,0EA4BC;AAGD,sDA6BC;AAjED,+CAA0E;AAG1E,uFAAiF;AAEjF,SAAgB,+BAA+B,CAC7C,MAA+B;IAE/B,MAAM,SAAS,GAAuB,EAAE,CAAC;IAEzC,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAA,8BAAe,EAAC,MAAM,CAAC,OAAO,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IAChF,IAAI,kBAAkB,EAAE,CAAC;QACvB,MAAM,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,EAAE;YACzD,SAAS,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,EAAsB,CAAC,CAAC;QACxD,CAAC,CAAC,CAAC;IACL,CAAC;IAED,IAAA,8DAA4B,EAAC,MAAM,EAAE,CAAC,aAAsC,EAAE,EAAE;QAC9E,IAAI,CAAC,aAAa,EAAE,OAAO;YAAE,OAAO;QAEpC,MAAM,aAAa,GAAG,qBAAqB,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEnE,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE,EAAE;YACtD,SAAS,CAAC,IAAI,CAAC;gBACb,IAAI,EAAE,WAAW;gBACjB,OAAO,EAAE,cAAc;aACJ,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,OAAO,SAAS;SACb,IAAI,EAAE;SACN,MAAM,CAAC,CAAC,GAAG,EAA2B,EAAE,CAAC,IAAA,wCAAyB,EAAC,GAAG,CAAC,CAAC,CAAC;AAC9E,CAAC;AAED,wDAAwD;AACxD,SAAgB,qBAAqB,CACnC,OAA2C;IAE3C,IAAI,CAAC,OAAO;QAAE,OAAO,EAAE,CAAC;IAExB,MAAM,WAAW,GAAuB,EAAE,CAAC;IAC3C,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAEjF,aAAa,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE;QAC3B,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;YAC1B,sCAAsC;YACtC,sEAAsE;YACtE,8CAA8C;YAC9C,MAAM,OAAO,GACX,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;YACxE,WAAW,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;QACzC,CAAC;aAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;YACtC,mEAAmE;YACnE,WAAW,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;QACrC,CAAC;aAAM,CAAC;YACN,+DAA+D;YAC/D,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,EAAE;gBAChD,MAAM,OAAO,GAAG,OAAO,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;gBAC7E,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;YACpC,CAAC,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC,CAAC;IAEH,OAAO,WAAW,CAAC;AACrB,CAAC"}
|
|
@@ -21,7 +21,11 @@ function mutWebpackFederatedRemotesConfig(zephyr_engine, config, resolvedDepende
|
|
|
21
21
|
const remoteEntries = (0, extract_federated_dependency_pairs_1.parseRemotesAsEntries)(remotes);
|
|
22
22
|
remoteEntries.forEach((remote) => {
|
|
23
23
|
const [remote_name, remote_version] = remote;
|
|
24
|
-
const resolved_dep = resolvedDependencyPairs.find((dep) =>
|
|
24
|
+
const resolved_dep = resolvedDependencyPairs.find((dep) => {
|
|
25
|
+
const nameMatch = dep.name === remote_name;
|
|
26
|
+
const versionMatch = dep.version === 'latest' ? true : dep.version === remote_version;
|
|
27
|
+
return nameMatch && versionMatch;
|
|
28
|
+
});
|
|
25
29
|
(0, zephyr_agent_1.ze_log)(`remote_name: ${remote_name}, remote_version: ${remote_version}`);
|
|
26
30
|
if (!resolved_dep) {
|
|
27
31
|
(0, zephyr_agent_1.ze_log)(`Resolved dependency pair not found for remote: ${JSON.stringify(remote, null, 2)}`, 'skipping...');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mut-webpack-federated-remotes-config.js","sourceRoot":"","sources":["../../src/xpack-extract/mut-webpack-federated-remotes-config.ts"],"names":[],"mappings":";;AAOA,
|
|
1
|
+
{"version":3,"file":"mut-webpack-federated-remotes-config.js","sourceRoot":"","sources":["../../src/xpack-extract/mut-webpack-federated-remotes-config.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zephyr-xpack-internal",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.50",
|
|
4
4
|
"description": "Xpack internals for Zephyr",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"@module-federation/automatic-vendor-federation": "^1.2.1",
|
|
20
20
|
"is-ci": "^4.1.0",
|
|
21
21
|
"tslib": "^2.8.1",
|
|
22
|
-
"zephyr-agent": "0.0.
|
|
23
|
-
"zephyr-edge-contract": "0.0.
|
|
22
|
+
"zephyr-agent": "0.0.50",
|
|
23
|
+
"zephyr-edge-contract": "0.0.50"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/is-ci": "3.0.4",
|