Skip to content

Commit

Permalink
chore: release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Aug 14, 2024
1 parent 604774c commit 957de29
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@


<a name="1.4.1"></a>
## [1.5.1](https://github.com/maicol07/material-web-additions/compare/v1.5.0...v1.5.1) (2024-08-14)


### Bug Fixes

* Disable SSR due to issues in production ([604774c](https://github.com/maicol07/material-web-additions/commit/604774c3ca47725cd8c219953cc05fe562a8e306))

## [1.5.0](https://github.com/maicol07/material-web-additions/compare/v1.4.4...v1.5.0) (2024-07-04)


Expand Down
55 changes: 44 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maicol07/material-web-additions",
"version": "1.5.0",
"version": "1.5.1",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -75,12 +75,19 @@
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["css-loader", "sass-loader", "style-loader"]
"ignoreMissing": [
"css-loader",
"sass-loader",
"style-loader"
]
}
},
"wireit": {
"build": {
"dependencies": ["build:ts", "update-docs"]
"dependencies": [
"build:ts",
"update-docs"
]
},
"build:ts": {
"command": "tsc --pretty",
Expand All @@ -105,21 +112,45 @@
"!scripts/"
],
"clean": "if-file-deleted",
"dependencies": ["build:css-to-ts"]
"dependencies": [
"build:css-to-ts"
]
},
"build:css-to-ts": {
"command": "find . \\( -path ./.wireit -o -path ./node_modules -o -path ./catalog \\) -prune -o -name '*.css' -print | xargs node css-to-ts.js",
"files": ["css-to-ts.js", "!scripts/", "!node_modules"],
"output": ["**/*.css.ts", "!catalog", "!scripts/"],
"dependencies": ["build:sass"]
"files": [
"css-to-ts.js",
"!scripts/",
"!node_modules"
],
"output": [
"**/*.css.ts",
"!catalog",
"!scripts/"
],
"dependencies": [
"build:sass"
]
},
"build:sass": {
"command": "sass --style=compressed --load-path=node_modules --load-path=node_modules/sass-true/sass $(ls -d */ | grep -vE 'node_modules|catalog')",
"files": ["**/*.scss", "!catalog", "!scripts/", "!node_modules"],
"output": ["**/*.css", "**/*.css.map", "!catalog", "!scripts/"]
"files": [
"**/*.scss",
"!catalog",
"!scripts/",
"!node_modules"
],
"output": [
"**/*.css",
"**/*.css.map",
"!catalog",
"!scripts/"
]
},
"build:catalog": {
"dependencies": ["./catalog:build:prod"]
"dependencies": [
"./catalog:build:prod"
]
},
"build:analyzer": {
"command": "tsc -b scripts/tsconfig.json --pretty",
Expand Down Expand Up @@ -150,7 +181,9 @@
"!node_modules"
],
"output": [],
"dependencies": ["build:analyzer"]
"dependencies": [
"build:analyzer"
]
}
},
"web-types": "./web-types.json"
Expand Down

0 comments on commit 957de29

Please sign in to comment.