Compare commits
66
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fb804c72e | ||
|
|
89d77f72ae | ||
|
|
b07a7ba5d8 | ||
|
|
0a7029973b | ||
|
|
b0c4ff5fd5 | ||
|
|
26bcfba18f | ||
|
|
72878d1350 | ||
|
|
73ddd63af1 | ||
|
|
e712ace818 | ||
|
|
f1519f69cc | ||
|
|
d6a1488df8 | ||
|
|
3c88849bd6 | ||
|
|
cf10110801 | ||
|
|
c69a4c78f4 | ||
|
|
172633de84 | ||
|
|
97da4ba6f5 | ||
|
|
268fa7d113 | ||
|
|
01efc4e904 | ||
|
|
3a5379b259 | ||
|
|
7e0d14bd5a | ||
|
|
c14a8a23a8 | ||
|
|
1e93e354f4 | ||
|
|
31dbbc4079 | ||
|
|
dd044d5ed4 | ||
|
|
f2b561a576 | ||
|
|
617c592fcd | ||
|
|
2865bd48bc | ||
|
|
d7fce96c88 | ||
|
|
f6614aed7b | ||
|
|
13f90b070c | ||
|
|
41139e9696 | ||
|
|
7abca08775 | ||
|
|
0ee22f49f3 | ||
|
|
ddfd732122 | ||
|
|
98cfe88d9c | ||
|
|
dcc7ffa1e3 | ||
|
|
fdbb44a39f | ||
|
|
988da26979 | ||
|
|
ca92af5f24 | ||
|
|
bccb2d34f6 | ||
|
|
606d89f497 | ||
|
|
fca1c062b1 | ||
|
|
33b697aba3 | ||
|
|
d6f13ac9e6 | ||
|
|
425253bb52 | ||
|
|
4815504c13 | ||
|
|
dee3b31133 | ||
|
|
142a7b3388 | ||
|
|
174f803195 | ||
|
|
6e1bfad553 | ||
|
|
1812184292 | ||
|
|
827fae5d59 | ||
|
|
47a3acdef1 | ||
|
|
aa64cad7d3 | ||
|
|
d6920f0b6a | ||
|
|
45ccaaffed | ||
|
|
584ec36bc3 | ||
|
|
b5a839c8cd | ||
|
|
d87f7fc35e | ||
|
|
35955ddc1d | ||
|
|
6f7467d467 | ||
|
|
4378ea77b2 | ||
|
|
c1d91e5399 | ||
|
|
67bb1ff22a | ||
|
|
cf47047329 | ||
|
|
15b9f4d04b |
@@ -0,0 +1,49 @@
|
||||
name: Docker Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Gitea Container Registry
|
||||
if: github.event_name == 'push'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: gitea.forkless.com
|
||||
username: ${{ secrets.GITEAUSER }}
|
||||
password: ${{ secrets.GITEATOKEN }}
|
||||
|
||||
- name: Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: gitea.forkless.com/forkless/mermaid-live-editor
|
||||
tags: |
|
||||
type=raw,value=latest,enable=${{ github.ref_name == 'master' }}
|
||||
type=raw,value=nightly,enable=${{ github.ref_name == 'develop' }}
|
||||
type=sha,prefix={{branch}}-
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
target: mermaid
|
||||
push: ${{ github.event_name == 'push' }}
|
||||
pull: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
build-args: |
|
||||
MERMAID_RENDERER_URL=${{ vars.MERMAID_RENDERER_URL || 'https://mermaid.ink' }}
|
||||
MERMAID_KROKI_RENDERER_URL=${{ vars.MERMAID_KROKI_RENDERER_URL || 'https://kroki.io' }}
|
||||
MERMAID_IS_ENABLED_MERMAID_CHART_LINKS=false
|
||||
@@ -12,7 +12,7 @@ jobs:
|
||||
name: 'Playwright Tests'
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: mcr.microsoft.com/playwright:v1.61.1-jammy
|
||||
image: mcr.microsoft.com/playwright:v1.60.0-jammy
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
24.18.0
|
||||
24.16.0
|
||||
|
||||
@@ -116,6 +116,7 @@ This app is created with Svelte Kit.
|
||||
## Release
|
||||
|
||||
When a PR is created targeting master, it will be built and deployed by Netlify.
|
||||
|
||||
The URL will be indicated in a Comment in the PR.
|
||||
|
||||
Once the PR is merged, it will automatically be released.
|
||||
|
||||
+10
-10
@@ -33,9 +33,9 @@
|
||||
"@iconify-json/logos": "^1.2.11",
|
||||
"@iconify-json/material-symbols": "^1.2.79",
|
||||
"@iconify-json/mdi": "^1.2.3",
|
||||
"@playwright/test": "^1.61.1",
|
||||
"@playwright/test": "^1.60.0",
|
||||
"@sveltejs/adapter-static": "^3.0.10",
|
||||
"@sveltejs/kit": "^2.67.0",
|
||||
"@sveltejs/kit": "^2.63.1",
|
||||
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
||||
"@tailwindcss/typography": "^0.5.20",
|
||||
"@tailwindcss/vite": "^4.3.1",
|
||||
@@ -52,7 +52,7 @@
|
||||
"clsx": "^2.1.1",
|
||||
"cssnano": "^8.0.2",
|
||||
"dotenv": "^17.4.2",
|
||||
"eslint": "^10.5.0",
|
||||
"eslint": "^10.4.1",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-es": "^4.1.0",
|
||||
"eslint-plugin-no-only-tests": "^3.4.0",
|
||||
@@ -60,7 +60,7 @@
|
||||
"eslint-plugin-svelte": "^3.19.0",
|
||||
"eslint-plugin-tailwindcss": "^3.18.3",
|
||||
"eslint-plugin-unicorn": "^65.0.1",
|
||||
"globals": "^17.7.0",
|
||||
"globals": "^17.6.0",
|
||||
"husky": "^9.1.7",
|
||||
"jsdom": "^29.1.1",
|
||||
"lint-staged": "^17.0.7",
|
||||
@@ -71,7 +71,7 @@
|
||||
"prettier-plugin-svelte": "^4.1.1",
|
||||
"prettier-plugin-tailwindcss": "^0.8.0",
|
||||
"svelte": "^5.56.3",
|
||||
"svelte-check": "^4.7.1",
|
||||
"svelte-check": "^4.6.0",
|
||||
"svelte-preprocess": "^6.0.5",
|
||||
"svelte-sonner": "^1.1.1",
|
||||
"tailwind-merge": "^3.6.0",
|
||||
@@ -80,9 +80,9 @@
|
||||
"tslib": "^2.8.1",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"typescript": "^6.0.3",
|
||||
"typescript-eslint": "^8.62.0",
|
||||
"typescript-eslint": "^8.60.1",
|
||||
"unplugin-icons": "^23.0.1",
|
||||
"vite": "^8.1.0",
|
||||
"vite": "^8.0.16",
|
||||
"vite-plugin-devtools-json": "^1.0.0",
|
||||
"vitest": "^4.1.9",
|
||||
"vitest-dom": "^0.1.1"
|
||||
@@ -92,7 +92,7 @@
|
||||
"@codemirror/lang-markdown": "^6.5.0",
|
||||
"@codemirror/lang-yaml": "^6.1.3",
|
||||
"@codemirror/language": "^6.12.3",
|
||||
"@codemirror/state": "^6.7.0",
|
||||
"@codemirror/state": "^6.6.0",
|
||||
"@codemirror/view": "^6.43.1",
|
||||
"@fontsource-variable/recursive": "^5.2.8",
|
||||
"@fsegurai/codemirror-theme-vscode-dark": "^6.2.6",
|
||||
@@ -109,7 +109,7 @@
|
||||
"mermaid": "^11.15.0",
|
||||
"mode-watcher": "^1.1.0",
|
||||
"monaco-editor": "0.55.1",
|
||||
"pako": "2.2.0",
|
||||
"pako": "2.1.0",
|
||||
"plausible-tracker": "^0.3.9",
|
||||
"random-word-slugs": "0.1.7",
|
||||
"svg-pan-zoom": "3.6.2",
|
||||
@@ -123,7 +123,7 @@
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=24.18.0"
|
||||
"node": ">=24.16.0"
|
||||
},
|
||||
"packageManager": "pnpm@10.34.4+sha512.8768be55200ae3f2226b6527fcca2687e14bc4e5f12d7721a0f25da3df47915177058648db4177baf348120fa0ba2752d8d8d93f6beaf1fe64ae18da8de961af",
|
||||
"pnpm": {
|
||||
|
||||
Generated
+348
-348
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user