Skip to content

Commit 969fa69

Browse files
authored
Merge pull request #162 from vim-jp/feature/2025
2025 teaser
2 parents fa25975 + 286c0b5 commit 969fa69

File tree

17 files changed

+6845
-0
lines changed

17 files changed

+6845
-0
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ jobs:
2020
- name: build with jekyll
2121
uses: actions/jekyll-build-pages@v1
2222

23+
# pnpm
24+
- uses: pnpm/action-setup@v4
25+
- name: build 2025
26+
working-directory: ./2025
27+
run: |
28+
pnpm install --frozen-lockfile
29+
pnpm build
30+
- name: copy 2025 to _site
31+
shell: bash
32+
run: cp -r 2025/dist/ _site/2025/
33+
2334
- name: Upload artifact
2435
uses: actions/upload-pages-artifact@v3
2536
with:

2025/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/

2025/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# vimConf 2025
2+
3+
## 💻 Development
4+
5+
- Clone this repository
6+
- Install dependencies using `pnpm install`
7+
- Run development server using `pnpm dev` (or `pnpm dev -- --open` to open the site in the browser)
8+
- Open [http://localhost:5173](http://localhost:5173) in your browser
9+
10+
## 📦 Build
11+
12+
- Run `pnpm build` to build the site
13+
14+
## ✨ Preview
15+
16+
- Run `pnpm preview` to preview the site

2025/astro.config.mjs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// @ts-check
2+
import { defineConfig } from 'astro/config';
3+
4+
// https://astro.build/config
5+
export default defineConfig({
6+
base: '/2025',
7+
experimental: {
8+
serializeConfig: true,
9+
},
10+
redirects: {
11+
'/': '/2025/ja',
12+
'/2025': '/2025/ja',
13+
},
14+
});

2025/package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "2025",
3+
"private": true,
4+
"type": "module",
5+
"version": "0.0.1",
6+
"scripts": {
7+
"dev": "astro dev",
8+
"build": "astro build",
9+
"preview": "astro preview",
10+
"astro": "astro"
11+
},
12+
"dependencies": {
13+
"astro": "^5.2.5",
14+
"astro-google-fonts-optimizer": "^0.2.2"
15+
},
16+
"pnpm": {
17+
"executionEnv": {
18+
"nodeVersion": "22.13.1"
19+
}
20+
},
21+
"packageManager": "[email protected]"
22+
}

0 commit comments

Comments
 (0)