Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonPuglisi committed Nov 10, 2024
1 parent 20a05a4 commit 7060a87
Show file tree
Hide file tree
Showing 4 changed files with 391 additions and 340 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy-app-engine.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Deploy to GCP App Engine

on: [push, pull_request_target]
on:
push:
branches:
- main
pull_request:
branches-ignore:
- main

concurrency:
group: "ae"
Expand Down Expand Up @@ -31,7 +37,7 @@ jobs:
path: deploy.zip

deploy:
if: ${{ github.ref == 'refs/heads/main' }}
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: build
environment:
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "descent",
"version": "1.8.11",
"version": "1.8.12",
"description": "Elegant now playing display for Last.fm showing song metadata and local weather.",
"keywords": [
"descent",
Expand All @@ -23,19 +23,19 @@
"private": true,
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.20.0",
"express": "^4.21.1",
"gulp": "^5.0.0",
"node-fetch": "^3.3.2",
"pug": "^3.0.3"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"eslint": "^9.10.0",
"browser-sync": "^3.0.3",
"eslint": "^9.14.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify-es": "^3.0.0",
"sass": "^1.78.0"
"sass": "^1.80.6"
}
}
2 changes: 1 addition & 1 deletion views/template/external.pug
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mixin weatherIcons
link(href='https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.12/css/weather-icons.min.css', rel='stylesheet', integrity='sha512-r/Gan7PMSRovDus++vDS2Ayutc/cSdl268u047n4z+k7GYuR7Hiw71FsT3QQxdKJBVHYttOJ6IGLnlM9IoMToQ==', crossorigin='anonymous', referrerpolicy='no-referrer')

mixin colorThief
script(src='https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.4.0/color-thief.min.js', integrity='sha512-r2yd2GP87iHAsf2K+ARvu01VtR7Bs04la0geDLbFlB/38AruUbA5qfmtXwXx6FZBQGJRogiPtEqtfk/fnQfaYA==', crossorigin='anonymous', referrerpolicy='no-referrer')
script(src='https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.6.0/color-thief.min.js', integrity='sha512-Qsp00gBIzIqLPECogMy5bQ6uOsMig9lc37A8qEHMvSze65UK21DHONbfSTY09zE9V8C0tQN+ldPU6w0wlBSfcA==', crossorigin='anonymous', referrerpolicy='no-referrer')

mixin chroma
script(src='https://cdnjs.cloudflare.com/ajax/libs/chroma-js/2.4.2/chroma.min.js', integrity='sha512-zInFF17qBFVvvvFpIfeBzo7Tj7+rQxLeTJDmbxjBz5/zIr89YVbTNelNhdTT+/DCrxoVzBeUPVFJsczKbB7sew==', crossorigin='anonymous', referrerpolicy='no-referrer')
Loading

0 comments on commit 7060a87

Please sign in to comment.