Skip to content

Commit 157bf49

Browse files
author
Angular Builds
committed
5332e5b fix(@angular-devkit/build-angular): resolve absolute output-path when using esbuild based builders
1 parent 28cd735 commit 157bf49

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@angular-devkit/build-angular",
3-
"version": "17.1.1+sha-33662ac",
3+
"version": "17.1.1+sha-5332e5b",
44
"description": "Angular Webpack Build Facade",
55
"main": "src/index.js",
66
"typings": "src/index.d.ts",
77
"builders": "builders.json",
88
"dependencies": {
99
"@ampproject/remapping": "2.2.1",
10-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#33662ac",
11-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#33662ac",
12-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#33662ac",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#5332e5b",
11+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#5332e5b",
12+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#5332e5b",
1313
"@babel/core": "7.23.7",
1414
"@babel/generator": "7.23.6",
1515
"@babel/helper-annotate-as-pure": "7.22.5",
@@ -20,7 +20,7 @@
2020
"@babel/preset-env": "7.23.7",
2121
"@babel/runtime": "7.23.7",
2222
"@discoveryjs/json-ext": "0.5.7",
23-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#33662ac",
23+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#5332e5b",
2424
"@vitejs/plugin-basic-ssl": "1.0.2",
2525
"ansi-colors": "4.1.3",
2626
"autoprefixer": "10.4.16",

src/builders/application/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function normalizeOptions(context, projectName, options, extensions) {
7070
server: 'server',
7171
media: 'media',
7272
...(typeof outputPath === 'string' ? undefined : outputPath),
73-
base: normalizeDirectoryPath(node_path_1.default.join(workspaceRoot, typeof outputPath === 'string' ? outputPath : outputPath.base)),
73+
base: normalizeDirectoryPath(node_path_1.default.resolve(workspaceRoot, typeof outputPath === 'string' ? outputPath : outputPath.base)),
7474
};
7575
const outputNames = {
7676
bundles: options.outputHashing === schema_1.OutputHashing.All || options.outputHashing === schema_1.OutputHashing.Bundles

uniqueId

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Thu Jan 25 2024 15:02:43 GMT+0000 (Coordinated Universal Time)
1+
Fri Jan 26 2024 14:43:35 GMT+0000 (Coordinated Universal Time)

0 commit comments

Comments
 (0)