@fedify/relay 2.0.0-dev.241 → 2.0.0-dev.279
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/dist/litepub.test.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
|
4
4
|
globalThis.addEventListener = () => {};
|
|
5
5
|
|
|
6
|
-
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-
|
|
6
|
+
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-LzQIv32Y.js";
|
|
7
7
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
8
8
|
import { createRelay } from "@fedify/relay";
|
|
9
9
|
import { Accept, Announce, Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
package/dist/mastodon.test.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
|
4
4
|
globalThis.addEventListener = () => {};
|
|
5
5
|
|
|
6
|
-
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-
|
|
6
|
+
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-LzQIv32Y.js";
|
|
7
7
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
8
8
|
import { createRelay } from "@fedify/relay";
|
|
9
9
|
import { Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
|
@@ -27515,7 +27515,7 @@ const preloadedContexts = {
|
|
|
27515
27515
|
};
|
|
27516
27516
|
var contexts_default = preloadedContexts;
|
|
27517
27517
|
var name = "@fedify/vocab-runtime";
|
|
27518
|
-
var version = "2.0.0-dev.
|
|
27518
|
+
var version = "2.0.0-dev.279+ce1bdc22";
|
|
27519
27519
|
var license = "MIT";
|
|
27520
27520
|
var exports$1 = { ".": "./src/mod.ts" };
|
|
27521
27521
|
var description = "Runtime library for @fedify/vocab";
|
|
@@ -27533,7 +27533,7 @@ var imports = {
|
|
|
27533
27533
|
"pkijs": "npm:pkijs@^3.2.5"
|
|
27534
27534
|
};
|
|
27535
27535
|
var exclude = ["dist", "node_modules"];
|
|
27536
|
-
var publish = { "exclude": ["**/*.test.ts"] };
|
|
27536
|
+
var publish = { "exclude": ["**/*.test.ts", "tsdown.config.ts"] };
|
|
27537
27537
|
var tasks = {
|
|
27538
27538
|
"check": "deno fmt --check && deno lint && deno check src/*.ts",
|
|
27539
27539
|
"test": "deno test"
|
|
@@ -27955,7 +27955,7 @@ async function getRemoteDocument(url, response, fetch$1) {
|
|
|
27955
27955
|
* Creates a JSON-LD document loader that utilizes the browser's `fetch` API.
|
|
27956
27956
|
*
|
|
27957
27957
|
* The created loader preloads the below frequently used contexts by default
|
|
27958
|
-
* (unless `options.
|
|
27958
|
+
* (unless `options.skipPreloadedContexts` is set to `true`):
|
|
27959
27959
|
*
|
|
27960
27960
|
* - <https://www.w3.org/ns/activitystreams>
|
|
27961
27961
|
* - <https://w3id.org/security/v1>
|
|
@@ -28298,8 +28298,8 @@ var LanguageString = class extends String {
|
|
|
28298
28298
|
/**
|
|
28299
28299
|
* Constructs a new `LanguageString`.
|
|
28300
28300
|
* @param value A string value written in the given language.
|
|
28301
|
-
* @param
|
|
28302
|
-
*
|
|
28301
|
+
* @param language The language of the string. If a string is given, it will
|
|
28302
|
+
* be parsed as a `Intl.Locale` object.
|
|
28303
28303
|
*/
|
|
28304
28304
|
constructor(value, language) {
|
|
28305
28305
|
super(value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/relay",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.279+ce1bdc22",
|
|
4
4
|
"description": "ActivityPub relay support for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Fedify",
|
|
@@ -50,20 +50,22 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@js-temporal/polyfill": "^0.5.1",
|
|
52
52
|
"@logtape/logtape": "^2.0.0",
|
|
53
|
-
"@fedify/fedify": "^2.0.0-dev.
|
|
54
|
-
"@fedify/vocab": "2.0.0-dev.
|
|
53
|
+
"@fedify/fedify": "^2.0.0-dev.279+ce1bdc22",
|
|
54
|
+
"@fedify/vocab": "2.0.0-dev.279+ce1bdc22"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"tsdown": "^0.12.9",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
59
|
"urlpattern-polyfill": "^10.1.0",
|
|
60
|
-
"@fedify/vocab-runtime": "^2.0.0-dev.
|
|
60
|
+
"@fedify/vocab-runtime": "^2.0.0-dev.279+ce1bdc22"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build:self": "tsdown",
|
|
64
64
|
"build": "pnpm --filter @fedify/relay... run build:self",
|
|
65
65
|
"prepublish": "pnpm build",
|
|
66
|
-
"
|
|
67
|
-
"test
|
|
66
|
+
"pretest": "pnpm build",
|
|
67
|
+
"test": "cd dist/ && node --test",
|
|
68
|
+
"pretest:bun": "pnpm build",
|
|
69
|
+
"test:bun": "cd dist/ && bun test --timeout 60000"
|
|
68
70
|
}
|
|
69
71
|
}
|