Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
🐛 fix but with light theme in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Ciruzzi committed Aug 23, 2021
1 parent 0ef334a commit ff160a2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
- This project adheres to [Semantic Versioning][semver].
- This project uses [Gitmoji][gitmoji]

## 4.2.3

- :bug: fix but with light theme in docs.

## 4.2.2

- :arrow_up: dependency upgrade.
Expand Down
3 changes: 3 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
.tsd-widget.menu:before {
filter: invert(1);
}
.code {
background-color: inherit;
}
@media (prefers-color-scheme: light) {
:root {
--color-background: #eee;
Expand Down
3 changes: 3 additions & 0 deletions docs/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
.tsd-widget.menu:before {
filter: invert(1);
}
.code {
background-color: inherit;
}
@media (prefers-color-scheme: light) {
:root {
--color-background: #eee;
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "@vangware/window-open-promise",
"description": "🪟 Promised Window.open();",
"version": "4.2.2",
"version": "4.2.3",
"author": {
"email": "hello@vangware.com",
"name": "Vangware",
"url": "https://vangware.com"
},
"bugs": "https://github.com/vangware/window-open-promise/issues",
"dependencies": {
"@vangware/utils": "^7.0.4"
"@vangware/utils": "^7.0.5"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@types/node": "^16.7.1",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vangware/base": "^5.2.1",
"@vangware/test": "^7.1.4",
"@vangware/base": "^5.2.2",
"@vangware/test": "^7.1.5",
"c8": "^7.8.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
Expand Down Expand Up @@ -64,7 +64,6 @@
"document": "typedoc",
"lint": "eslint {src,tests}/**/*.ts",
"lint:fix": "eslint {src,tests}/**/*.ts --fix",
"postpublish": "run-s clean",
"pre-compile": "run-s pre-compile:*",
"pre-compile:require": "tsc --noemit --project tsconfig.require.json",
"pre-compile:import": "tsc --noemit --project tsconfig.import.json",
Expand Down

0 comments on commit ff160a2

Please sign in to comment.