Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## 1.0.0 (2022-08-14)

### ⚠ BREAKING CHANGES

* update `constructor` signature

### Features

* add `Logger` ([3cec071](3cec071))

### Performance Improvements

* use default formatters ([325d623](325d623))

### Code Refactoring

* update `constructor` signature ([25450f2](25450f2))

### Dependencies

* add `pino` ([2cac021](2cac021))
* bump `pino` from `7.5.1` to `8.4.0` ([29eaad9](29eaad9))
* bump `pino` from `8.4.0` to `8.4.1` ([9a8ae8a](9a8ae8a))
* upgrade `pino` to `v7.5.1` ([2d25c55](2d25c55))
  • Loading branch information
semantic-release-bot authored and vansergen committed Aug 14, 2022
1 parent b8a6af5 commit 376b3d5
Show file tree
Hide file tree
Showing 14 changed files with 10,053 additions and 0 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

## 1.0.0 (2022-08-14)

### ⚠ BREAKING CHANGES

- update `constructor` signature

### Features

- add `Logger` ([3cec071](https://github.com/binden-js/logger/commit/3cec071224127ba59caf3e86193477ea1fac0e06))

### Performance Improvements

- use default formatters ([325d623](https://github.com/binden-js/logger/commit/325d6238f98a3000d124ba6adf3c63b3063fc6ec))

### Code Refactoring

- update `constructor` signature ([25450f2](https://github.com/binden-js/logger/commit/25450f22e16233d7008b608ba6c489452bd2c0a8))

### Dependencies

- add `pino` ([2cac021](https://github.com/binden-js/logger/commit/2cac021111cbf7225eab4efe0b17ba39a877dfe9))
- bump `pino` from `7.5.1` to `8.4.0` ([29eaad9](https://github.com/binden-js/logger/commit/29eaad936ab79d4acc8acbcb0bed10096ac40571))
- bump `pino` from `8.4.0` to `8.4.1` ([9a8ae8a](https://github.com/binden-js/logger/commit/9a8ae8a1a75125b248d291571ce2ab8621871439))
- upgrade `pino` to `v7.5.1` ([2d25c55](https://github.com/binden-js/logger/commit/2d25c55dd37c71f55998807cb29c055015ad56d5))
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.
119 changes: 119 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
: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: #0000ff;
--dark-hl-4: #569cd6;
--light-hl-5: #0070c1;
--dark-hl-5: #4fc1ff;
--light-hl-6: #795e26;
--dark-hl-6: #dcdcaa;
--light-hl-7: #098658;
--dark-hl-7: #b5cea8;
--light-hl-8: #008000;
--dark-hl-8: #6a9955;
--light-hl-9: #267f99;
--dark-hl-9: #4ec9b0;
--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);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--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);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--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);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--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);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--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);
}
.hl-8 {
color: var(--hl-8);
}
.hl-9 {
color: var(--hl-9);
}
pre,
code {
background: var(--code-background);
}

0 comments on commit 376b3d5

Please sign in to comment.