-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular-devkit/build-angular): avoid hash filenames for non-inje…
…cted global styles/scripts When using the esbuild-based browser application builder, non-injected global styles and scripts were unintentionally being output with filenames that contain a hash. This can prevent the filenames from being discoverable and therefore usable at runtime. The output filenames will now no longer contain a hash component which matches the behavior of the Webpack-based builder.
- Loading branch information
1 parent
67e9406
commit 2a2817d
Showing
3 changed files
with
152 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 99 additions & 0 deletions
99
packages/angular_devkit/build_angular/src/builders/browser-esbuild/global-styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
import type { BuildOptions } from 'esbuild'; | ||
import assert from 'node:assert'; | ||
import { LoadResultCache } from './load-result-cache'; | ||
import { NormalizedBrowserOptions } from './options'; | ||
import { createStylesheetBundleOptions } from './stylesheets/bundle-options'; | ||
|
||
export function createGlobalStylesBundleOptions( | ||
options: NormalizedBrowserOptions, | ||
target: string[], | ||
browsers: string[], | ||
initial: boolean, | ||
cache?: LoadResultCache, | ||
): BuildOptions | undefined { | ||
const { | ||
workspaceRoot, | ||
optimizationOptions, | ||
sourcemapOptions, | ||
outputNames, | ||
globalStyles, | ||
preserveSymlinks, | ||
externalDependencies, | ||
stylePreprocessorOptions, | ||
tailwindConfiguration, | ||
} = options; | ||
|
||
const namespace = 'angular:styles/global'; | ||
const entryPoints: Record<string, string> = {}; | ||
let found = false; | ||
for (const style of globalStyles) { | ||
if (style.initial === initial) { | ||
found = true; | ||
entryPoints[style.name] = `${namespace};${style.name}`; | ||
} | ||
} | ||
|
||
// Skip if there are no entry points for the style loading type | ||
if (found === false) { | ||
return; | ||
} | ||
|
||
const buildOptions = createStylesheetBundleOptions( | ||
{ | ||
workspaceRoot, | ||
optimization: !!optimizationOptions.styles.minify, | ||
sourcemap: !!sourcemapOptions.styles, | ||
preserveSymlinks, | ||
target, | ||
externalDependencies, | ||
outputNames: initial | ||
? outputNames | ||
: { | ||
...outputNames, | ||
bundles: '[name]', | ||
}, | ||
includePaths: stylePreprocessorOptions?.includePaths, | ||
browsers, | ||
tailwindConfiguration, | ||
}, | ||
cache, | ||
); | ||
buildOptions.legalComments = options.extractLicenses ? 'none' : 'eof'; | ||
buildOptions.entryPoints = entryPoints; | ||
|
||
buildOptions.plugins.unshift({ | ||
name: 'angular-global-styles', | ||
setup(build) { | ||
build.onResolve({ filter: /^angular:styles\/global;/ }, (args) => { | ||
if (args.kind !== 'entry-point') { | ||
return null; | ||
} | ||
|
||
return { | ||
path: args.path.split(';', 2)[1], | ||
namespace, | ||
}; | ||
}); | ||
build.onLoad({ filter: /./, namespace }, (args) => { | ||
const files = globalStyles.find(({ name }) => name === args.path)?.files; | ||
assert(files, `global style name should always be found [${args.path}]`); | ||
|
||
return { | ||
contents: files.map((file) => `@import '${file.replace(/\\/g, '/')}';`).join('\n'), | ||
loader: 'css', | ||
resolveDir: workspaceRoot, | ||
}; | ||
}); | ||
}, | ||
}); | ||
|
||
return buildOptions; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters