From cde649c83b5236bc441607cda797bdd8caf7e6ad Mon Sep 17 00:00:00 2001 From: Elizabeth Mitchell Date: Wed, 20 Mar 2024 16:39:27 -0700 Subject: [PATCH] fix: publish `.css` files for `@import`-ing Note: `./internal/*.css` files are still private and may unexpectedly change between versions. This change allows for importing public stylesheets like typography: ```css @import '~@material/web/typography/md-typescale-styles.css'; ``` PiperOrigin-RevId: 617659298 --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 7b529b6f47..4425013234 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,8 @@ "**/*.js.map", "**/*.d.ts", "**/*.scss", + "**/*.css", + "**/*.css.map", "!web-test-runner.config.js", "!commitlint.config.js", "!**/test/**",