Skip to content

Commit

Permalink
chore(release): 3.1.0-beta.1 [skip ci]
Browse files Browse the repository at this point in the history
# [3.1.0-beta.1](v3.0.2...v3.1.0-beta.1) (2024-11-16)

### Bug Fixes

* update all dependencies ([d817f1c](d817f1c))
* update minor dependency updates ([7bfbf0e](7bfbf0e))

### Features

* support cjs and esm ([8f3fa3b](8f3fa3b))
  • Loading branch information
semantic-release-bot committed Nov 16, 2024
1 parent 20da29b commit 5a1432b
Show file tree
Hide file tree
Showing 16 changed files with 727 additions and 1,129 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [3.1.0-beta.1](https://github.com/matzehecht/koa-oas-router/compare/v3.0.2...v3.1.0-beta.1) (2024-11-16)


### Bug Fixes

* update all dependencies ([d817f1c](https://github.com/matzehecht/koa-oas-router/commit/d817f1ca1398686624ee553e66f68cfaa381b3be))
* update minor dependency updates ([7bfbf0e](https://github.com/matzehecht/koa-oas-router/commit/7bfbf0e3c95acbda85261e6a55992cffa10167ad))


### Features

* support cjs and esm ([8f3fa3b](https://github.com/matzehecht/koa-oas-router/commit/8f3fa3b61811840fbc764014b11c4026bc962656))

## [3.0.2](https://github.com/matzehecht/koa-oas-router/compare/v3.0.1...v3.0.2) (2023-03-14)


Expand Down
7 changes: 7 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
:root {
--light-hl-0: #0000FF;
--dark-hl-0: #569CD6;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
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

0 comments on commit 5a1432b

Please sign in to comment.