Skip to content

Commit 5dfb732

Browse files
committed
test 2
1 parent ef1fd9e commit 5dfb732

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
steps:
1717
- name: Checkout your repository using git
1818
uses: actions/checkout@v3
19+
with:
20+
submodules: true
1921
- name: Install, build, and upload your site
2022
uses:
2123
withastro/action@v1

astro.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default defineConfig({
2929
themes: ['dracula', 'github-light'],
3030
useStarlightUiThemeColors: true,
3131
},
32-
plugins: process.env.CI ? [] : [
32+
plugins: [
3333
starlightTypeDoc({
3434
entryPoints: [
3535
// 'obsidian-js-engine-plugin/JsEngine.d.ts',
@@ -70,6 +70,7 @@ export default defineConfig({
7070

7171
plugin: ['typedoc-plugin-mdn-links'],
7272
},
73+
output: 'api',
7374
tsconfig: 'obsidian-js-engine-plugin/tsconfig.json',
7475
sidebar: {
7576
label: 'API Reference',

0 commit comments

Comments
 (0)