Skip to content

Commit 1616bd9

Browse files
authored
feat(angular-rspack,angular-rsbuild): add define option (#45)
* feat(angular-rspack): add define option * feat(angular-rsbuild): add define option
1 parent 7d35c3d commit 1616bd9

File tree

13 files changed

+33
-2
lines changed

13 files changed

+33
-2
lines changed

e2e/fixtures/rsbuild-csr-css/rsbuild.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ export default () => {
66
browser: './src/main.ts',
77
inlineStylesExtension: 'css',
88
outputPath: './build',
9+
define: {
10+
nxAngularRsbuild: '"20.6.2"',
11+
},
912
},
1013
});
1114
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
<p>&#64;nx/angular-rsbuild v{{ ngAngularRsbuildVersion }}</p>
12
<app-nx-welcome></app-nx-welcome>
23
<router-outlet></router-outlet>

e2e/fixtures/rsbuild-csr-css/src/app/app.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { Component } from '@angular/core';
22
import { RouterModule } from '@angular/router';
33
import { NxWelcomeComponent } from './nx-welcome.component';
44

5+
declare const nxAngularRsbuild: string;
6+
57
@Component({
68
imports: [NxWelcomeComponent, RouterModule],
79
selector: 'app-root',
@@ -10,4 +12,5 @@ import { NxWelcomeComponent } from './nx-welcome.component';
1012
})
1113
export class AppComponent {
1214
title = 'rsbuild-csr-css';
15+
ngAngularRsbuildVersion = nxAngularRsbuild;
1316
}

e2e/fixtures/rspack-csr-css/rspack.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ module.exports = () => {
3434
port: 8080,
3535
proxyConfig: './proxy.conf.json',
3636
},
37+
define: {
38+
nxAngularRspack: '"20.6.2"',
39+
},
3740
},
3841
},
3942
{

e2e/fixtures/rspack-csr-css/src/app/app.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<p>&#64;nx/angular-rspack v{{ nxAngularRspackVersion }}</p>
12
<p>{{ greeting$ | async }}</p>
23
<p class="icon-github">&nbsp;</p>
34
<app-scss-inline-test></app-scss-inline-test>

e2e/fixtures/rspack-csr-css/src/app/app.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { ApiService } from './api.service';
66
import { NxWelcomeComponent } from './nx-welcome.component';
77
import { ScssInlineTestComponent } from './scss-inline-test';
88

9+
declare const nxAngularRspack: string;
10+
911
@Component({
1012
imports: [
1113
NxWelcomeComponent,
@@ -20,6 +22,7 @@ import { ScssInlineTestComponent } from './scss-inline-test';
2022
export class AppComponent implements OnInit {
2123
title = 'rsbuild-csr-css';
2224
greeting$!: Observable<string>;
25+
nxAngularRspackVersion = nxAngularRspack;
2326

2427
constructor(private readonly apiService: ApiService) {}
2528

packages/angular-rsbuild/src/lib/config/create-config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ export async function _createConfig(
154154
define: {
155155
...(isProd ? { ngDevMode: 'false' } : undefined),
156156
ngJitMode: normalizedOptions.aot ? undefined : 'true', // @TODO: use normalizedOptions
157+
...normalizedOptions.define,
157158
},
158159
},
159160
output: {
@@ -194,6 +195,7 @@ export async function _createConfig(
194195
ngServerMode: true,
195196
...(isProd ? { ngDevMode: 'false' } : undefined),
196197
ngJitMode: normalizedOptions.aot ? undefined : 'true', // @TODO: use normalizedOptions
198+
...normalizedOptions.define,
197199
},
198200
},
199201
output: {

packages/angular-rsbuild/src/lib/models/normalize-options.ts

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ function validateChunkOptions(options: Partial<PluginAngularOptions>) {
8888
export const DEFAULT_PLUGIN_ANGULAR_OPTIONS: PluginAngularOptions = {
8989
index: './src/index.html',
9090
browser: './src/main.ts',
91+
define: {},
9192
server: undefined,
9293
ssr: undefined,
9394
fileReplacements: [],
@@ -121,6 +122,7 @@ export function normalizeOptions(
121122
ssr,
122123
optimization,
123124
devServer,
125+
define,
124126
...restOptions
125127
} = options;
126128

@@ -150,6 +152,7 @@ export function normalizeOptions(
150152
...restOptions,
151153
...(server != null ? { server } : {}),
152154
...(ssr != null ? { ssr: normalizedSsr } : {}),
155+
...(define != null ? { define } : {}),
153156
optimization: normalizedOptimization,
154157
outputPath: normalizeOutputPath(root, options.outputPath),
155158
sourceMap: normalizeSourceMap(options.sourceMap),

packages/angular-rsbuild/src/lib/models/plugin-options.ts

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ export interface SourceMap {
4343
export interface PluginAngularOptions {
4444
index: string;
4545
browser: string;
46+
/**
47+
* Defines global identifiers that will be replaced with a specified constant value when found in any JavaScript or TypeScript code including libraries.
48+
* The value will be used directly.
49+
* String values must be put in quotes.
50+
*/
51+
define?: Record<string, string>;
4652
server?: string;
4753
ssr?:
4854
| boolean

packages/angular-rspack/src/lib/models/angular-rspack-plugin-options.ts

+6
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ export interface AngularRspackPluginOptions extends PluginUnsupportedOptions {
9090
assets?: AssetElement[];
9191
browser?: string;
9292
commonChunk?: boolean;
93+
/**
94+
* Defines global identifiers that will be replaced with a specified constant value when found in any JavaScript or TypeScript code including libraries.
95+
* The value will be used directly.
96+
* String values must be put in quotes.
97+
*/
98+
define?: Record<string, string>;
9399
devServer?: DevServerOptions;
94100
extractLicenses?: boolean;
95101
fileReplacements?: FileReplacement[];

packages/angular-rspack/src/lib/models/normalize-options.ts

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ export function normalizeOptions(
242242
aot,
243243
browser: options.browser ?? './src/main.ts',
244244
commonChunk: options.commonChunk ?? true,
245+
define: options.define ?? {},
245246
devServer: normalizeDevServer(options.devServer),
246247
extractLicenses: options.extractLicenses ?? true,
247248
fileReplacements: resolveFileReplacements(fileReplacements, root),

packages/angular-rspack/src/lib/models/unsupported-options.ts

-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export interface PluginUnsupportedOptions {
4343
};
4444
externalDependencies?: string[];
4545
clearScreen?: boolean;
46-
define?: Record<string, string>;
4746
baseHref?: string;
4847
verbose?: boolean;
4948
progress?: boolean;
@@ -76,7 +75,6 @@ export const TOP_LEVEL_OPTIONS_PENDING_SUPPORT = [
7675
'security',
7776
'externalDependencies',
7877
'clearScreen',
79-
'define',
8078
'baseHref',
8179
'verbose',
8280
'progress',

packages/angular-rspack/src/lib/plugins/ng-rspack.ts

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export class NgRspackPlugin implements RspackPluginInstance {
7272
ngDevMode: isProduction ? 'false' : {},
7373
ngJitMode: this.pluginOptions.aot ? undefined : 'true',
7474
ngServerMode: this.pluginOptions.hasServer,
75+
...(this.pluginOptions.define ?? {}),
7576
}).apply(compiler);
7677
if (this.pluginOptions.assets) {
7778
new CopyRspackPlugin({

0 commit comments

Comments
 (0)