Compare commits

...

4 Commits

Author SHA1 Message Date
Alan Orth 54d3242633
CHANGELOG.md: update notes
continuous-integration/drone/push Build is passing Details
2021-10-18 15:03:01 +03:00
Alan Orth 1d4204a404
Regenerate static assets 2021-10-18 14:53:45 +03:00
Alan Orth 985070b311
package.json: update cleancss options
We use -O1 instead of --level 1 now.
2021-10-18 14:52:55 +03:00
Alan Orth 2e40f6cd69
Update npm dependencies 2021-10-18 14:52:43 +03:00
4 changed files with 538 additions and 472 deletions

View File

@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased Changes
### Updated
- Bootstrap v4.6.0, webpack v5.16.0, haven 0.6.2, etc
- Bootstrap v4.6.0, webpack v5, haven 0.7.0, clean-css-cli, etc
## [[ 1.6.0 ]] - 2020-12-05
### Changed

File diff suppressed because one or more lines are too long

988
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -7,8 +7,8 @@
"url": "https://github.com/alanorth/hugo-theme-bootstrap4-blog.git"
},
"scripts": {
"build:css": "sass --style expanded source/scss/style.scss assets/css/style.css.tmp && cleancss --level 1 assets/css/style.css.tmp -o assets/css/style.css",
"build:rtlcss": "rtlcss -s assets/css/style.css.tmp assets/css/style.rtl.css.tmp && cleancss --level 1 assets/css/style.rtl.css.tmp -o assets/css/style.rtl.css",
"build:css": "sass --style expanded source/scss/style.scss assets/css/style.css.tmp && cleancss -O1 assets/css/style.css.tmp -o assets/css/style.css",
"build:rtlcss": "rtlcss -s assets/css/style.css.tmp assets/css/style.rtl.css.tmp && cleancss -O1 assets/css/style.rtl.css.tmp -o assets/css/style.rtl.css",
"build:cookieconsent": "cp node_modules/@chiiya/haven/dist/haven.umd.min.js assets/js",
"build:js": "webpack",
"build": "npm run build:css && npm run build:rtlcss && npm run build:js && npm run build:cookieconsent && npm run clean",
@ -18,14 +18,14 @@
"author": "Alan Orth",
"license": "CC-BY-3.0",
"devDependencies": {
"@chiiya/haven": "^0.6.2",
"@chiiya/haven": "^0.7.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"bootstrap": "^4.6.0",
"clean-css-cli": "^4.3.0",
"rtlcss": "^2.6.2",
"sass": "^1.32.4",
"webpack-cli": "^4.5.0"
"clean-css-cli": "^5.4.1",
"rtlcss": "^3.3.0",
"sass": "^1.43.2",
"webpack-cli": "^4.9.1"
}
}