Skip to content

Commit 64af9e6

Browse files
Update bundling-and-minification.md (dotnet#15996)
1 parent 0202fe5 commit 64af9e6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

aspnetcore/client-side/bundling-and-minification.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ To minify *custom.css* and bundle it with *site.css* into a *site.min.css* file,
207207
> Alternatively, the following globbing pattern could be used:
208208
>
209209
> ```json
210-
> "inputFiles": ["wwwroot/**/*(*.css|!(*.min.css))"]
210+
> "inputFiles": ["wwwroot/**/!(*.min).css" ]
211211
> ```
212212
>
213213
> This globbing pattern matches all CSS files and excludes the minified file pattern.
@@ -322,7 +322,6 @@ In this example, any tasks defined within the `MyPreCompileTarget` target run be
322322
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
323323
```
324324

325-
326325
## Additional resources
327326

328327
* [Use Grunt](xref:client-side/using-grunt)

0 commit comments

Comments
 (0)