Skip to content

Commit 9fb1be3

Browse files
chore: release 1.8.0
1 parent 4b753a5 commit 9fb1be3

File tree

2 files changed

+52
-11
lines changed

2 files changed

+52
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@
2020

2121

2222
<a name="1.4.1"></a>
23+
## [1.8.0](https://github.com/maicol07/material-web-additions/compare/v1.7.0...v1.8.0) (2025-04-28)
24+
25+
26+
### Features
27+
28+
* **tokens:** ✨ Add typescale tokens to snackbar ([234ef4d](https://github.com/maicol07/material-web-additions/commit/234ef4d5aa25aae8865903b8ab0f023c1da4a1ae))
29+
* **top-app-bar:** ✨ Add top app bar component ([d23b7ec](https://github.com/maicol07/material-web-additions/commit/d23b7ec59ea2ea59730e5689e40b813863f24b73))
30+
2331
## [1.7.0](https://github.com/maicol07/material-web-additions/compare/v1.6.0...v1.7.0) (2025-04-21)
2432

2533

package.json

Lines changed: 44 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maicol07/material-web-additions",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -79,12 +79,19 @@
7979
},
8080
"pnpm": {
8181
"peerDependencyRules": {
82-
"ignoreMissing": ["css-loader", "sass-loader", "style-loader"]
82+
"ignoreMissing": [
83+
"css-loader",
84+
"sass-loader",
85+
"style-loader"
86+
]
8387
}
8488
},
8589
"wireit": {
8690
"build": {
87-
"dependencies": ["build:ts", "update-docs"]
91+
"dependencies": [
92+
"build:ts",
93+
"update-docs"
94+
]
8895
},
8996
"build:ts": {
9097
"command": "tsc --pretty",
@@ -109,21 +116,45 @@
109116
"!scripts/"
110117
],
111118
"clean": "if-file-deleted",
112-
"dependencies": ["build:css-to-ts"]
119+
"dependencies": [
120+
"build:css-to-ts"
121+
]
113122
},
114123
"build:css-to-ts": {
115124
"command": "find . \\( -path ./.wireit -o -path ./node_modules -o -path ./catalog \\) -prune -o -name '*.css' -print | xargs node css-to-ts.js",
116-
"files": ["css-to-ts.js", "!scripts/", "!node_modules"],
117-
"output": ["**/*.css.ts", "!catalog", "!scripts/"],
118-
"dependencies": ["build:sass"]
125+
"files": [
126+
"css-to-ts.js",
127+
"!scripts/",
128+
"!node_modules"
129+
],
130+
"output": [
131+
"**/*.css.ts",
132+
"!catalog",
133+
"!scripts/"
134+
],
135+
"dependencies": [
136+
"build:sass"
137+
]
119138
},
120139
"build:sass": {
121140
"command": "sass --style=compressed --load-path=node_modules --load-path=node_modules/sass-true/sass $(ls -d */ | grep -vE 'node_modules|catalog')",
122-
"files": ["**/*.scss", "!catalog", "!scripts/", "!node_modules"],
123-
"output": ["**/*.css", "**/*.css.map", "!catalog", "!scripts/"]
141+
"files": [
142+
"**/*.scss",
143+
"!catalog",
144+
"!scripts/",
145+
"!node_modules"
146+
],
147+
"output": [
148+
"**/*.css",
149+
"**/*.css.map",
150+
"!catalog",
151+
"!scripts/"
152+
]
124153
},
125154
"build:catalog": {
126-
"dependencies": ["./catalog:build:prod"]
155+
"dependencies": [
156+
"./catalog:build:prod"
157+
]
127158
},
128159
"build:analyzer": {
129160
"command": "tsc -b scripts/tsconfig.json --pretty",
@@ -154,7 +185,9 @@
154185
"!node_modules"
155186
],
156187
"output": [],
157-
"dependencies": ["build:analyzer"]
188+
"dependencies": [
189+
"build:analyzer"
190+
]
158191
}
159192
},
160193
"web-types": "./web-types.json"

0 commit comments

Comments
 (0)