Skip to content

Commit

Permalink
Regenerated project docs.
Browse files Browse the repository at this point in the history
Removed ts-jest and ts-loader. Replaced ts-jest with @swc/jest for test execution speed.
Increased patch version for release.
Updated all NPM dependencies to latest compatible.
  • Loading branch information
mbrich committed May 1, 2023
1 parent 6e9fc7a commit c507a7a
Show file tree
Hide file tree
Showing 55 changed files with 9,055 additions and 3,210 deletions.
12 changes: 9 additions & 3 deletions .swcrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"jsc": {
"parser": {
"syntax": "typescript"
}
}
"syntax": "typescript",
"jsx": false,
"tsx": false,
"decorators": false,
"dynamicImport": true
},
"target": "es2015"
},
"sourceMaps": false
}
38 changes: 19 additions & 19 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
:root {
--light-hl-0: #000000;
--dark-hl-0: #D4D4D4;
--light-hl-1: #AF00DB;
--dark-hl-1: #C586C0;
--light-hl-2: #001080;
--dark-hl-2: #9CDCFE;
--light-hl-3: #A31515;
--dark-hl-3: #CE9178;
--light-hl-4: #008000;
--dark-hl-4: #6A9955;
--light-hl-5: #0000FF;
--dark-hl-5: #569CD6;
--light-hl-6: #0070C1;
--dark-hl-6: #4FC1FF;
--light-hl-7: #795E26;
--dark-hl-7: #DCDCAA;
--light-hl-0: #795E26;
--dark-hl-0: #DCDCAA;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #A31515;
--dark-hl-2: #CE9178;
--light-hl-3: #AF00DB;
--dark-hl-3: #C586C0;
--light-hl-4: #001080;
--dark-hl-4: #9CDCFE;
--light-hl-5: #008000;
--dark-hl-5: #6A9955;
--light-hl-6: #0000FF;
--dark-hl-6: #569CD6;
--light-hl-7: #0070C1;
--dark-hl-7: #4FC1FF;
--light-hl-8: #098658;
--dark-hl-8: #B5CEA8;
--light-code-background: #F5F5F5;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

Expand Down Expand Up @@ -47,7 +47,7 @@
--code-background: var(--dark-code-background);
} }

body.light {
:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
Expand All @@ -60,7 +60,7 @@ body.light {
--code-background: var(--light-code-background);
}

body.dark {
:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
Expand Down
Loading

0 comments on commit c507a7a

Please sign in to comment.