1
Fork 0

Compare commits

..

No commits in common. "f4fa51251e12009ba256d698be0ec71ac530234d" and "01792d43d263869e4b5d6b912e406d2da6fe9794" have entirely different histories.

5 changed files with 2446 additions and 2948 deletions

View File

@ -1,4 +1,5 @@
import process from "node:process"; import process from "node:process";
import {build} from "esbuild"; import {build} from "esbuild";
import {cmd} from "web-ext"; import {cmd} from "web-ext";

View File

@ -26,17 +26,17 @@
"webextension-polyfill": "^0.10.0" "webextension-polyfill": "^0.10.0"
}, },
"devDependencies": { "devDependencies": {
"@bauke/eslint-config": "^0.1.4", "@bauke/eslint-config": "^0.1.2",
"@bauke/prettier-config": "^0.1.4", "@bauke/prettier-config": "^0.1.2",
"@holllo/test": "^0.2.1", "@holllo/test": "^0.1.0",
"@types/node": "^20.10.2", "@types/node": "^18.11.17",
"@types/webextension-polyfill": "^0.10.7", "@types/webextension-polyfill": "^0.9.2",
"esbuild": "^0.19.8", "esbuild": "^0.16.8",
"tsx": "^4.6.2", "tsx": "^3.12.1",
"typescript": "^5.3.2", "typescript": "^4.9.4",
"web-ext": "^7.8.0", "web-ext": "^7.4.0",
"webextension-polyfill": "^0.10.0", "webextension-polyfill": "^0.10.0",
"xo": "^0.56.0" "xo": "^0.53.1"
}, },
"prettier": "@bauke/prettier-config", "prettier": "@bauke/prettier-config",
"xo": { "xo": {

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
import browser from "webextension-polyfill"; import browser from "webextension-polyfill";
import {createValue} from "../build/index.js"; import {createValue} from "../build/index.js";
const updatedDate = await createValue<Date>({ const updatedDate = await createValue<Date>({

View File

@ -1,5 +1,6 @@
import {setup, type TestContext} from "@holllo/test"; import {setup, type TestContext} from "@holllo/test";
import browser from "webextension-polyfill"; import browser from "webextension-polyfill";
import {createValue, type Value} from "../source/index.js"; import {createValue, type Value} from "../source/index.js";
const create = async <T>( const create = async <T>(