shelving 1.192.0 → 1.192.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -11
- package/store/URLStore.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shelving",
|
|
3
|
-
"version": "1.192.
|
|
3
|
+
"version": "1.192.1",
|
|
4
4
|
"author": "Dave Houlbrooke <dave@shax.com>",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,11 +14,10 @@
|
|
|
14
14
|
"@types/bun": "^1.3.13",
|
|
15
15
|
"@types/react": "^19.2.14",
|
|
16
16
|
"@types/react-dom": "^19.2.3",
|
|
17
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
17
|
+
"@typescript/native-preview": "^7.0.0-dev.20260421.2",
|
|
18
18
|
"firebase": "^12.12.1",
|
|
19
19
|
"react": "^19.2.5",
|
|
20
|
-
"react-dom": "^19.2.5"
|
|
21
|
-
"typescript": "^5.9.3"
|
|
20
|
+
"react-dom": "^19.2.5"
|
|
22
21
|
},
|
|
23
22
|
"peerDependencies": {
|
|
24
23
|
"@google-cloud/firestore": ">=7.0.0",
|
|
@@ -66,13 +65,13 @@
|
|
|
66
65
|
"test:type": "tsgo --noEmit",
|
|
67
66
|
"test:unit": "bun test --concurrent --only-failures",
|
|
68
67
|
"fix": "bun run --sequential fix:*",
|
|
69
|
-
"fix:lint": "biome check --write .",
|
|
70
|
-
"build": "bun run
|
|
71
|
-
"build:setup": "rm -rf ./dist && mkdir -p ./dist",
|
|
72
|
-
"build:copy": "cp package.json dist/package.json && cp LICENSE.md dist/LICENSE.md && cp README.md dist/README.md && cp .npmignore dist/.npmignore",
|
|
73
|
-
"build:emit": "tsgo",
|
|
74
|
-
"build:
|
|
75
|
-
"build:
|
|
68
|
+
"fix:0:lint": "biome check --write .",
|
|
69
|
+
"build": "bun run --sequential build:*",
|
|
70
|
+
"build:0:setup": "rm -rf ./dist && mkdir -p ./dist",
|
|
71
|
+
"build:1:copy": "cp package.json dist/package.json && cp LICENSE.md dist/LICENSE.md && cp README.md dist/README.md && cp .npmignore dist/.npmignore",
|
|
72
|
+
"build:2:emit": "tsgo",
|
|
73
|
+
"build:3:syntax": "bun run ./dist/index.js",
|
|
74
|
+
"build:4:unit": "bun test ./dist/**/*.test.js --concurrent --only-failures --bail"
|
|
76
75
|
},
|
|
77
76
|
"sideEffects": false,
|
|
78
77
|
"type": "module",
|
package/store/URLStore.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AnyCaller } from "../util/function.js";
|
|
2
|
+
import type { AbsolutePath } from "../util/index.js";
|
|
2
3
|
import { type PossibleURIParams, type URIParams, type URIScheme } from "../util/uri.js";
|
|
3
4
|
import { type PossibleURL, type URL, type URLString } from "../util/url.js";
|
|
4
5
|
import { BusyStore } from "./BusyStore.js";
|
|
@@ -17,7 +18,7 @@ export declare class URLStore extends BusyStore<URL, PossibleURL> {
|
|
|
17
18
|
get hostname(): string;
|
|
18
19
|
get host(): string;
|
|
19
20
|
get port(): string;
|
|
20
|
-
get pathname():
|
|
21
|
+
get pathname(): AbsolutePath;
|
|
21
22
|
/** Get the URL params as a string. */
|
|
22
23
|
get search(): string;
|
|
23
24
|
/** Get the URL params as a dictionary. */
|