Skip to content

Commit 5aea4f8

Browse files
committed
Upgrade to Quartz 4.4.0
Signed-off-by: Abhi Agarwal <[email protected]>
1 parent 093c3e1 commit 5aea4f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+7503
-2985
lines changed

.github/workflows/deploy.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: Publish Quartz to GitHub Pages
2-
2+
33
on:
44
push:
55
branches:
66
- main
7-
7+
88
permissions:
99
contents: read
1010
pages: write
1111
id-token: write
12-
12+
1313
concurrency:
1414
group: "pages"
1515
cancel-in-progress: true
16-
16+
1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/upload-pages-artifact@v3
3333
with:
3434
path: public
35-
35+
3636
deploy:
3737
needs: build
3838
environment:
@@ -42,4 +42,4 @@ jobs:
4242
steps:
4343
- name: Deploy to GitHub Pages
4444
id: deployment
45-
uses: actions/deploy-pages@v4
45+
uses: actions/deploy-pages@v4

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.9.0

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-slim as builder
1+
FROM node:20-slim AS builder
22
WORKDIR /usr/src/app
33
COPY package.json .
44
COPY package-lock.json* .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Abhi's Notes
22

3-
A collection of things I want to remember
3+
A collection of things I want to remember

globals.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ export declare global {
44
type: K,
55
listener: (this: Document, ev: CustomEventMap[K]) => void,
66
): void
7+
removeEventListener<K extends keyof CustomEventMap>(
8+
type: K,
9+
listener: (this: Document, ev: CustomEventMap[K]) => void,
10+
): void
711
dispatchEvent<K extends keyof CustomEventMap>(ev: CustomEventMap[K] | UIEvent): void
812
}
913
interface Window {

0 commit comments

Comments
 (0)