Skip to content

Commit a816f29

Browse files
dependabot[bot]demiankatzgithub-actions[bot]
authored
Bump typedoc from 0.25.4 to 0.27.4 and add better CI integration (#1244)
* Bump typedoc from 0.25.4 to 0.27.2 Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.4 to 0.27.2. - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](TypeStrong/typedoc@v0.25.4...v0.27.2) --- updated-dependencies: - dependency-name: typedoc dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix broken build; update docs. * Restore deleted file. * Update typedoc. * Add workflow to update docs. * Fix name. * Run correct command. * Commit from GitHub Actions (Update Documentation) * Fix CNAME issue. * Commit from GitHub Actions (Update Documentation) * Prevent commit spam. * Commit from GitHub Actions (Update Documentation) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Demian Katz <demian.katz@villanova.edu> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2f455a2 commit a816f29

207 files changed

Lines changed: 2110 additions & 1933 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Update Documentation
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
name: Lint
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Setup Node
12+
uses: actions/setup-node@v4
13+
with:
14+
node-version: '18'
15+
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Install npm dependencies
20+
run: npm install
21+
22+
- name: Build documentation
23+
run: npm run docs
24+
25+
- name: Regenerate CNAME file
26+
run: echo docs.universalviewer.io > docs/CNAME
27+
28+
- name: Auto-commit fixes
29+
uses: EndBug/add-and-commit@v9
30+
with:
31+
default_author: github_actions
32+
add: "['docs/']"

β€Ždocs/CNAMEβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docs.universalviewer.io
1+
docs.universalviewer.io

β€Ždocs/assets/highlight.cssβ€Ž

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,22 @@
11
:root {
2-
--light-hl-0: #001080;
3-
--dark-hl-0: #9CDCFE;
4-
--light-hl-1: #000000;
5-
--dark-hl-1: #D4D4D4;
62
--light-code-background: #FFFFFF;
73
--dark-code-background: #1E1E1E;
84
}
95

106
@media (prefers-color-scheme: light) { :root {
11-
--hl-0: var(--light-hl-0);
12-
--hl-1: var(--light-hl-1);
137
--code-background: var(--light-code-background);
148
} }
159

1610
@media (prefers-color-scheme: dark) { :root {
17-
--hl-0: var(--dark-hl-0);
18-
--hl-1: var(--dark-hl-1);
1911
--code-background: var(--dark-code-background);
2012
} }
2113

2214
:root[data-theme='light'] {
23-
--hl-0: var(--light-hl-0);
24-
--hl-1: var(--light-hl-1);
2515
--code-background: var(--light-code-background);
2616
}
2717

2818
:root[data-theme='dark'] {
29-
--hl-0: var(--dark-hl-0);
30-
--hl-1: var(--dark-hl-1);
3119
--code-background: var(--dark-code-background);
3220
}
3321

34-
.hl-0 { color: var(--hl-0); }
35-
.hl-1 { color: var(--hl-1); }
3622
pre, code { background: var(--code-background); }

β€Ždocs/assets/icons.svgβ€Ž

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
Β (0)