Skip to content

Commit

Permalink
deps: postcss-cli@^9.1.0 (#51)
Browse files Browse the repository at this point in the history
* deps: postcss-cli@^9.1.0

* fix(postcss): no map, autoprefix serif
  • Loading branch information
ungoldman committed Mar 16, 2022
1 parent 1d4a784 commit 62e6b6a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"live-server": "^1.1.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^2.6.0",
"postcss-cli": "^9.1.0",
"sitedown": "^5.0.1",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0",
Expand Down Expand Up @@ -43,7 +43,8 @@
"scripts": {
"generate": "run-s generate:**",
"generate:css": "run-p 'sass:* -- -o ./'",
"generate:prefix": "postcss -u autoprefixer -r style.css",
"generate:prefix-1": "postcss -u autoprefixer -r style.css --no-map",
"generate:prefix-2": "postcss -u autoprefixer -r serif.css --no-map",
"generate:sign": "cat style.css | pbcopy && echo \"/*! $npm_package_name v$npm_package_version | ISC License | https://github.com/ungoldman/style.css */\" > style.css && pbpaste >> style.css",
"generate:sign-2": "cat serif.css | pbcopy && echo \"/*! $npm_package_name v$npm_package_version | ISC License | https://github.com/ungoldman/style.css */\" > serif.css && pbpaste >> serif.css",
"gh-pages": "npm run site && gh-pages -d site",
Expand Down
3 changes: 2 additions & 1 deletion serif.css
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ figcaption {
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
}

dfn {
Expand Down
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ figcaption {
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
}

dfn {
Expand Down

0 comments on commit 62e6b6a

Please sign in to comment.