Skip to content

Commit f3f6591

Browse files
committed
a
1 parent 740cdde commit f3f6591

4 files changed

Lines changed: 37 additions & 127 deletions

File tree

.github/workflows/build.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# DISCLOSURE: this is ai
2+
name: Build PenguinMod-SvelteUI
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
build-and-publish:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout Repository
19+
uses: actions/checkout@v4
20+
21+
- name: Setup Node.js
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: '22'
25+
26+
- name: Install Dependencies
27+
run: npm ci
28+
29+
- name: Build Library
30+
run: npm run prepack
31+
32+
- name: Publish to Build Branch
33+
uses: JamesIves/github-pages-deploy-action@v4
34+
with:
35+
branch: build
36+
folder: dist
37+
clean: true

package-lock.json

Lines changed: 0 additions & 124 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
"@sveltejs/kit": "^2.48.5",
3535
"@sveltejs/package": "^2.5.6",
3636
"@sveltejs/vite-plugin-svelte": "^6.2.1",
37-
"mdsvex": "^0.12.6",
3837
"svelte": "^5.43.8",
3938
"typescript": "^5.9.3",
4039
"vite": "^7.2.2"

svelte.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { mdsvex } from 'mdsvex';
21
import adapter from '@sveltejs/adapter-auto';
32

43
/** @type {import('@sveltejs/kit').Config} */
@@ -9,7 +8,6 @@ const config = {
98
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
109
adapter: adapter()
1110
},
12-
preprocess: [mdsvex()],
1311
extensions: ['.svelte', '.svx'],
1412
compilerOptions: {
1513
runes: true,

0 commit comments

Comments
 (0)