Skip to content

Commit 39d22d1

Browse files
committed
2 parents 20758f8 + e865440 commit 39d22d1

File tree

118 files changed

+4429
-3695
lines changed

Some content is hidden

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

118 files changed

+4429
-3695
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: npm test
4646

4747
- name: Ensure Quartz builds, check bundle info
48-
run: npx quartz build --bundleInfo
48+
run: npx quartz build --bundleInfo -d docs
4949

5050
publish-tag:
5151
if: ${{ github.repository == 'jackyzha0/quartz' && github.ref == 'refs/heads/v4' }}

.github/workflows/docker-build-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
network=host
3838
- name: Install cosign
3939
if: github.event_name != 'pull_request'
40-
uses: sigstore/[email protected].0
40+
uses: sigstore/[email protected].1
4141
- name: Login to GitHub Container Registry
4242
uses: docker/login-action@v3
4343
if: github.event_name != 'pull_request'

.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
node_modules/
2-
.tool-versions
1+
.DS_Store
2+
.gitignore
3+
node_modules
4+
public
5+
prof
6+
tsconfig.tsbuildinfo
7+
.obsidian
8+
.quartz-cache
9+
private/
10+
.replit
11+
replit.nix

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.9.0

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
public
2+
node_modules
3+
.quartz-cache

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"printWidth": 100,
3+
"quoteProps": "as-needed",
4+
"trailingComma": "all",
5+
"tabWidth": 2,
6+
"semi": false
7+
}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:20-slim AS builder
1+
FROM node:22-slim AS builder
22
WORKDIR /usr/src/app
33
COPY package.json .
44
COPY package-lock.json* .
55
RUN npm ci
66

7-
FROM node:20-slim
7+
FROM node:22-slim
88
WORKDIR /usr/src/app
99
COPY --from=builder /usr/src/app/ /usr/src/app/
1010
COPY . .

content/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)