Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
97ac9cb
bump node version on npm release (#153)
jamesmisson Jul 4, 2025
88be242
Update GitHub actions build-test to node 20 (#154)
jamesmisson Jul 4, 2025
6bbface
update dependencies
jamesmisson Jul 4, 2025
32e6424
switch tslint to eslint; run lint and prettify
jamesmisson Jul 4, 2025
fff1333
fix 2 lint errors (change let to const)
jamesmisson Jul 4, 2025
b3b264e
fix range assignment order
jamesmisson Jul 8, 2025
923170d
add workaround to define self in node-umd test
jamesmisson Jul 8, 2025
d32f5f9
change refs to master branch to refs to main
jamesmisson Jul 8, 2025
8139150
Merge pull request #155 from jamesmisson/UV-issue-1483
jamesmisson Jul 9, 2025
053f5a3
change build:docs to docs; move docs options to tsconfig.docs
jamesmisson Jul 9, 2025
b26c74b
add run docs step to readme
jamesmisson Jul 9, 2025
01323c5
run docs
jamesmisson Jul 9, 2025
ade6383
Merge pull request #156 from jamesmisson/master2main
jamesmisson Jul 10, 2025
4146bc7
remove nojekyll from docs script; rerun docs
jamesmisson Jul 10, 2025
3e5a1de
Merge branch 'main' into update-docs
jamesmisson Jul 10, 2025
e5a5e6d
Merge pull request #157 from jamesmisson/update-docs
jamesmisson Jul 10, 2025
ad18789
Release v4.2.22
jamesmisson Jul 10, 2025
ddb6354
Merge branch 'main-manifest' into manifest-merge-20250714
vincentmarchetti Jul 14, 2025
df88eaf
Updated the dependencies to the later version reference
vincentmarchetti Jul 15, 2025
bcf66f7
removed the test:3d script and associated config js file,
vincentmarchetti Jul 15, 2025
e1a15f0
run the lint:all script and commit the code formatted accoring to lin…
vincentmarchetti Jul 15, 2025
97001a5
generated docs using 'docs' script
vincentmarchetti Jul 15, 2025
1b903b9
Updated the package-lock.json with the packages install 14 July 2025
vincentmarchetti Jul 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: NPM build + test

on: [push]
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18' ]
node: [ '20' ]

name: Node ${{ matrix.node }} build
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- run: npm ci
- run: npm run build
- run: npm run test:3d
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Set tag
id: tagName
Expand Down
3 changes: 3 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"trailingComma": "es5"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ README.md is a mess, need to start from manifesto's and re-do!

# manifesto

[![Build Status](https://github.com/IIIF-Commons/manifesto/actions/workflows/build-test.yml/badge.svg?branch=master)](https://github.com/IIIF-Commons/manifesto/actions/workflows/build-test.yml)
[![Build Status](https://github.com/IIIF-Commons/manifesto/actions/workflows/build-test.yml/badge.svg?branch=main)](https://github.com/IIIF-Commons/manifesto/actions/workflows/build-test.yml)

Forked from [IIIF-Commons/manifesto](https://github.com/IIIF-Commons/manifesto).

Expand Down
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
1 change: 1 addition & 0 deletions docs/assets/hierarchy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
:root {
--light-hl-0: #0000FF;
--dark-hl-0: #569CD6;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #001080;
--dark-hl-2: #9CDCFE;
--light-hl-3: #795E26;
--dark-hl-3: #DCDCAA;
--light-hl-4: #008000;
--dark-hl-4: #6A9955;
--light-hl-5: #098658;
--dark-hl-5: #B5CEA8;
--light-hl-6: #267F99;
--dark-hl-6: #4EC9B0;
--light-hl-7: #A31515;
--dark-hl-7: #CE9178;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
.hl-2 { color: var(--hl-2); }
.hl-3 { color: var(--hl-3); }
.hl-4 { color: var(--hl-4); }
.hl-5 { color: var(--hl-5); }
.hl-6 { color: var(--hl-6); }
.hl-7 { color: var(--hl-7); }
pre, code { background: var(--code-background); }
18 changes: 18 additions & 0 deletions docs/assets/icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading