We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0272fc5 commit 82ca7d0Copy full SHA for 82ca7d0
packages/angular_devkit/build_angular/src/webpack/configs/styles.ts
@@ -98,6 +98,13 @@ export function getStylesConfig(wco: WebpackConfigOptions): webpack.Configuratio
98
extraPlugins.push(new RemoveHashPlugin({ chunkNames: noInjectNames, hashFormat }));
99
}
100
101
+ if (globalStylePaths.some(p => p.endsWith('.styl'))) {
102
+ wco.logger.warn(
103
+ 'Stylus usage is deprecated and will be removed in a future major version. ' +
104
+ 'To opt-out of the deprecated behaviour, please migrate to another stylesheet language.',
105
+ );
106
+ }
107
+
108
let sassImplementation: {} | undefined;
109
try {
110
// tslint:disable-next-line:no-implicit-dependencies
0 commit comments