Skip to content

Commit 9a1b4f1

Browse files
author
Angular Builds
committed
67630f5 fix(@angular-devkit/build-angular): remove skipAppShell as it has no effect in browser builder
1 parent 96c28c8 commit 9a1b4f1

File tree

11 files changed

+13
-39
lines changed

11 files changed

+13
-39
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"typings": "src/index.d.ts",
77
"builders": "builders.json",
88
"dependencies": {
9-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#d2a29af",
10-
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#d2a29af",
11-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#d2a29af",
12-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#d2a29af",
13-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#d2a29af",
9+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#67630f5",
10+
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#67630f5",
11+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#67630f5",
12+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#67630f5",
13+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#67630f5",
1414
"ajv": "6.5.3",
1515
"autoprefixer": "9.3.1",
1616
"circular-dependency-plugin": "5.0.2",

src/angular-cli-files/models/build-options.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export interface BuildOptions {
1212
optimization: boolean;
1313
environment?: string;
1414
outputPath: string;
15-
resourcesOutputPath?: string;
1615
aot?: boolean;
1716
sourceMap?: boolean;
1817
vendorSourceMap?: boolean;

src/angular-cli-files/models/build-options.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/angular-cli-files/models/webpack-configs/styles.js

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/angular-cli-files/plugins/postcss-cli-resources.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import * as webpack from 'webpack';
33
export interface PostcssCliResourcesOptions {
44
baseHref?: string;
55
deployUrl?: string;
6-
resourcesOutputPath?: string;
76
filename: string;
87
loader: webpack.loader.LoaderContext;
98
}

src/angular-cli-files/plugins/postcss-cli-resources.js

Lines changed: 3 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/browser/schema.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ export interface BrowserBuilderSchema {
5656
*/
5757
outputPath: string;
5858

59-
/**
60-
* Path where style resources will be placed (Relative to outputPath).
61-
*/
62-
resourcesOutputPath: string;
63-
6459
/**
6560
* Build using Ahead of Time compilation.
6661
*/

src/browser/schema.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@
7171
"type": "string",
7272
"description": "The full path for the new output directory, relative to the current workspace.\n\nBy default, writes output to a folder named dist/ in the current project."
7373
},
74-
"resourcesOutputPath": {
75-
"type": "string",
76-
"description": "The path where style resources will be placed, relative to outputPath.",
77-
"default": ""
78-
},
7974
"aot": {
8075
"type": "boolean",
8176
"description": "Build using Ahead of Time compilation.",

src/server/schema.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ export interface BuildWebpackServerSchema {
4949
* Path where output will be placed.
5050
*/
5151
outputPath: string;
52-
/**
53-
* Path where style resources will be placed (Relative to outputPath).
54-
*/
55-
resourcesOutputPath: string;
5652
/**
5753
* Generates a 'stats.json' file which can be analyzed using tools such as:
5854
* #webpack-bundle-analyzer' or https: //webpack.github.io/analyse.

src/server/schema.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@
4444
"type": "string",
4545
"description": "Path where output will be placed."
4646
},
47-
"resourcesOutputPath": {
48-
"type": "string",
49-
"description": "The path where style resources will be placed, relative to outputPath.",
50-
"default": ""
51-
},
5247
"sourceMap": {
5348
"type": "boolean",
5449
"description": "Output sourcemaps.",

0 commit comments

Comments
 (0)