1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-11-29 07:28:18 +01:00

Compare commits

..

4 Commits

Author SHA1 Message Date
54d3242633
CHANGELOG.md: update notes
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-18 15:03:01 +03:00
1d4204a404
Regenerate static assets 2021-10-18 14:53:45 +03:00
985070b311
package.json: update cleancss options
We use -O1 instead of --level 1 now.
2021-10-18 14:52:55 +03:00
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 ## Unreleased Changes
### Updated ### 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 ## [[ 1.6.0 ]] - 2020-12-05
### Changed ### 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" "url": "https://github.com/alanorth/hugo-theme-bootstrap4-blog.git"
}, },
"scripts": { "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: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 --level 1 assets/css/style.rtl.css.tmp -o assets/css/style.rtl.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:cookieconsent": "cp node_modules/@chiiya/haven/dist/haven.umd.min.js assets/js",
"build:js": "webpack", "build:js": "webpack",
"build": "npm run build:css && npm run build:rtlcss && npm run build:js && npm run build:cookieconsent && npm run clean", "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", "author": "Alan Orth",
"license": "CC-BY-3.0", "license": "CC-BY-3.0",
"devDependencies": { "devDependencies": {
"@chiiya/haven": "^0.6.2", "@chiiya/haven": "^0.7.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34", "@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2", "@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2", "@fortawesome/free-solid-svg-icons": "^5.15.2",
"bootstrap": "^4.6.0", "bootstrap": "^4.6.0",
"clean-css-cli": "^4.3.0", "clean-css-cli": "^5.4.1",
"rtlcss": "^2.6.2", "rtlcss": "^3.3.0",
"sass": "^1.32.4", "sass": "^1.43.2",
"webpack-cli": "^4.5.0" "webpack-cli": "^4.9.1"
} }
} }