Skip to content

Commit 61bb791

Browse files
author
Angular Builds
committed
3130043 fix(@schematics/angular): do not generate standalone component when using ng generate module
1 parent 48e28aa commit 61bb791

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-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.0.7+sha-0b48acc",
3+
"version": "17.0.7+sha-3130043",
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#0b48acc",
11-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#0b48acc",
12-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#0b48acc",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#3130043",
11+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#3130043",
12+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#3130043",
1313
"@babel/core": "7.23.2",
1414
"@babel/generator": "7.23.0",
1515
"@babel/helper-annotate-as-pure": "7.22.5",
@@ -20,7 +20,7 @@
2020
"@babel/preset-env": "7.23.2",
2121
"@babel/runtime": "7.23.2",
2222
"@discoveryjs/json-ext": "0.5.7",
23-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#0b48acc",
23+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#3130043",
2424
"@vitejs/plugin-basic-ssl": "1.0.1",
2525
"ansi-colors": "4.1.3",
2626
"autoprefixer": "10.4.16",

src/tools/esbuild/stylesheets/stylesheet-plugin-factory.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,15 @@ let postcss;
4949
*
5050
* Based on https://tailwindcss.com/docs/functions-and-directives
5151
*/
52-
const TAILWIND_KEYWORDS = ['@tailwind', '@layer', '@apply', '@config', 'theme(', 'screen('];
52+
const TAILWIND_KEYWORDS = [
53+
'@tailwind',
54+
'@layer',
55+
'@apply',
56+
'@config',
57+
'theme(',
58+
'screen(',
59+
'@screen', // Undocumented in version 3, see: https://github.com/tailwindlabs/tailwindcss/discussions/7516.
60+
];
5361
/**
5462
* Cached postcss instances that can be re-used between various StylesheetPluginFactory instances.
5563
*/

uniqueId

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fri Dec 15 2023 15:38:39 GMT+0000 (Coordinated Universal Time)
1+
Tue Dec 19 2023 15:53:09 GMT+0000 (Coordinated Universal Time)

0 commit comments

Comments
 (0)