Skip to content

Commit 228baf5

Browse files
committed
updates
1 parent dac48d8 commit 228baf5

33 files changed

Lines changed: 30482 additions & 4061 deletions

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-node@v3
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-node@v5
1414
with:
15-
node-version: 16
15+
node-version: 22
1616
- run: npm ci
1717
- run: npm run docs:build
1818
- name: Deploy
19-
uses: peaceiris/actions-gh-pages@v3
19+
uses: peaceiris/actions-gh-pages@v4
2020
with:
2121
# deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
2222
# external_repository: labctl/labctl

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
22
"eslint.run": "onType",
33
"editor.codeActionsOnSave": {
4-
"source.fixAll.eslint": true
4+
"source.fixAll.eslint": "explicit"
55
},
6-
"volar.tsPlugin": true,
76
"cSpell.words": [
7+
"clab",
88
"containerlab",
99
"dblclick",
1010
"golang",
1111
"labctl",
12+
"scrapligo",
13+
"srsim",
1214
"tmpl",
1315
"topo",
1416
"vars",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const sm = require("sitemap-ts");
1+
import { resolveOptions, generateSitemap } from "sitemap-ts";
22

33
function buildEnd() {
4-
const opt = sm.resolveOptions({
4+
const opt = resolveOptions({
55
hostname: "https://labctl.net/",
66
outDir: "docs/.vitepress/dist",
77
exclude: ["/404"],
@@ -14,7 +14,7 @@ function buildEnd() {
1414
// route.endsWith("/") ? route : route + "/"
1515
// );
1616

17-
sm.generateSitemap(opt);
17+
generateSitemap(opt);
1818
}
1919

2020
buildEnd();
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"hash": "2aee546f",
3+
"configHash": "24419518",
4+
"lockfileHash": "c5f8f4a8",
5+
"browserHash": "db3c9630",
6+
"optimized": {
7+
"vue": {
8+
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
9+
"file": "vue.js",
10+
"fileHash": "552a7529",
11+
"needsInterop": false
12+
},
13+
"vitepress > @vue/devtools-api": {
14+
"src": "../../../../node_modules/@vue/devtools-api/dist/index.js",
15+
"file": "vitepress___@vue_devtools-api.js",
16+
"fileHash": "6d466e78",
17+
"needsInterop": false
18+
},
19+
"vitepress > @vueuse/core": {
20+
"src": "../../../../node_modules/@vueuse/core/index.mjs",
21+
"file": "vitepress___@vueuse_core.js",
22+
"fileHash": "ada1b555",
23+
"needsInterop": false
24+
},
25+
"vue3-json-viewer": {
26+
"src": "../../../../node_modules/vue3-json-viewer/dist/vue3-json-viewer.mjs",
27+
"file": "vue3-json-viewer.js",
28+
"fileHash": "8dfe5faa",
29+
"needsInterop": false
30+
}
31+
},
32+
"chunks": {
33+
"chunk-7XPGAGRY": {
34+
"file": "chunk-7XPGAGRY.js"
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)