Skip to content

Commit

Permalink
Merge pull request #354 from hifiwi-fi/dependabot/npm_and_yarn/siteup…
Browse files Browse the repository at this point in the history
…/cli-6.0.0

Bump @siteup/cli from 5.0.0 to 6.0.0
  • Loading branch information
bcomnes authored Nov 20, 2023
2 parents 9056d4f + 91d690e commit 2864122
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@fastify/swagger-ui": "^1.3.0",
"@mozilla/readability": "^0.4.2",
"@nearform/sql": "^1.5.0",
"@siteup/cli": "^5.0.0",
"top-bun": "^7.0.0",
"abstract-cache-redis": "^2.0.0",
"classnames": "^2.3.1",
"clean-deep": "^3.4.0",
Expand Down Expand Up @@ -100,7 +100,7 @@
},
"scripts": {
"build": "run-s clean && run-p build:*",
"build:siteup": "siteup --src web --dest public",
"build:top-bun": "tb --src web --dest public",
"clean": "rm -rf public && mkdir -p public",
"deps": "depcruise --exclude '^node_modules' --output-type dot . | dot -T svg | depcruise-wrap-stream-in-html > dependency-graph.html",
"migrate": "postgrator",
Expand All @@ -118,8 +118,8 @@
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"watch": "run-s clean && run-p watch:*",
"watch:server": "fastify start -w --ignore-watch='node_modules .git web' -l info -P -p 3000 --options --address 0.0.0.0 app.js",
"watch:siteup": "npm run build:siteup -- --watch",
"watch:server": "fastify start -w --ignore-watch='node_modules .git web public' -l info -P -p 3000 --options --address localhost app.js",
"watch:tob-bun": "npm run build:top-bun -- --watch-only",
"print-routes": "fastify print-routes app.js",
"print-plugins": "fastify print-plugins app.js",
"generate-dbml": "npx pg-to-dbml --c postgres://postgres@localhost/breadcrum"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion web/global.client.js → web/globals/global.client.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { toggleTheme } from 'mine.css'
import 'fragmentions'
import { render } from 'uland-isomorphic'
import { header } from './components/header/index.js'
import { header } from '../components/header/index.js'

window.toggleTheme = toggleTheme

Expand Down
4 changes: 2 additions & 2 deletions web/global.css → web/globals/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@import 'highlight.js/styles/github-dark-dimmed.css';
@import 'fragmentions/fragmention.css';
@import './document.css';
@import './components/header';
@import './components/footer';
@import '../components/header';
@import '../components/footer';

:root {
--bc-episodes-color: hsla(87, 74%, 44%, 0.9);
Expand Down
2 changes: 1 addition & 1 deletion web/global.vars.js → web/globals/global.vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const __dirname = desm(import.meta.url)
const version = JSON.parse(
await readFile(
new URL(
join(__dirname, '../package.json'),
join(__dirname, '../../package.json'),
import.meta.url),
'utf8')
).version
Expand Down

0 comments on commit 2864122

Please sign in to comment.