Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update hugo and npm #50

Merged
merged 3 commits into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Get Hugo version
id: hugo_vr
run: |
ver=$(cat .Rprofile | grep hugo.version | cut -d"=" -f2 | sed -e s.\"..g | sed -e s.\ ..g)
ver=$(cat .Rprofile | grep hugo.version | cut -d'"' -f2 )
echo ".Rprofile sets hugo version to $ver"
echo "::set-output name=value::${ver}"

Expand Down
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"name":"drmowinckels",
"version":"1.0.1",
"description":"",
"main":"index.js",
"dependencies":{
"autoprefixer":"^10.4.0",
"postcss":"^8.4.5",
"postcss-cli":"^9.1.0",
"uuid":"^8.3.2"

"name": "drmowinckels",
"version": "1.0.1",
"description": "",
"main": "index.js",
"dependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"uuid": "^9.0.0"
},
"devDependencies":{
"bulma":"^0.9.3",
"node-sass":"^7.0.0"
"devDependencies": {
"bulma": "^0.9.4",
"node-sass": "^8.0.0"
},
"scripts":{
"build-css":"node-sass --include-path sass sass/custom-style.sass public/css/custom-style.css",
"watch-css":"nodemon -e sass -x \"npm run build-css\""
"scripts": {
"build-css": "node-sass --include-path sass sass/custom-style.sass public/css/custom-style.css",
"watch-css": "nodemon -e sass -x \"npm run build-css\""
},
"author":"Athanasia Monika Mowinckel",
"license":"ISC"
"author": "Athanasia Monika Mowinckel",
"license": "ISC"
}