@fedify/fedify 1.6.0 → 1.6.1-dev.826
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/deno.js +4 -3
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js +1 -1
- package/dist/vocab/vocab.js +176 -176
- package/package.json +2 -2
package/dist/deno.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
//#region deno.json
|
6
6
|
var name = "@fedify/fedify";
|
7
|
-
var version = "1.6.
|
7
|
+
var version = "1.6.1-dev.826+95a0d541";
|
8
8
|
var license = "MIT";
|
9
9
|
var exports = {
|
10
10
|
".": "./mod.ts",
|
@@ -59,6 +59,7 @@ var exclude = [
|
|
59
59
|
var tasks = {
|
60
60
|
"codegen": "deno run --allow-read --allow-write --check codegen/main.ts vocab/ ../runtime/ > vocab/vocab.ts && deno fmt vocab/vocab.ts && deno cache vocab/vocab.ts && deno check vocab/vocab.ts",
|
61
61
|
"check-version": "deno run --allow-read=package.json scripts/check_version.ts && deno run ../cli/scripts/check_version.ts",
|
62
|
+
"sync-version": "deno run --allow-read=package.json --allow-write=package.json scripts/sync_version.ts && deno run --allow-read=../cli/deno.json --allow-write=../cli/deno.json ../cli/scripts/sync_version.ts",
|
62
63
|
"cache": {
|
63
64
|
"command": "deno cache mod.ts",
|
64
65
|
"dependencies": ["check-version", "codegen"]
|
@@ -82,7 +83,7 @@ var tasks = {
|
|
82
83
|
},
|
83
84
|
"publish": {
|
84
85
|
"command": "deno publish",
|
85
|
-
"dependencies": ["codegen"]
|
86
|
+
"dependencies": ["check-version", "codegen"]
|
86
87
|
},
|
87
88
|
"pnpm:install": "pnpm install",
|
88
89
|
"pnpm:build": {
|
@@ -91,7 +92,7 @@ var tasks = {
|
|
91
92
|
},
|
92
93
|
"npm": {
|
93
94
|
"command": "pnpm pack",
|
94
|
-
"dependencies": ["pnpm:install"]
|
95
|
+
"dependencies": ["sync-version", "pnpm:install"]
|
95
96
|
},
|
96
97
|
"test:node": {
|
97
98
|
"command": "cd dist/ && node --test",
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { assertArg } from "../_common/from_file_url.js";
|
5
|
+
import { assertArg$2 as assertArg } from "../_common/from_file_url.js";
|
6
6
|
|
7
7
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js
|
8
8
|
/**
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
5
|
import { isPosixPathSeparator$1 as isPosixPathSeparator } from "./_util.js";
|
6
|
-
import { assertArg
|
6
|
+
import { assertArg } from "../_common/normalize.js";
|
7
7
|
import { normalizeString } from "../_common/normalize_string.js";
|
8
8
|
|
9
9
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { assertArg } from "../_common/from_file_url.js";
|
5
|
+
import { assertArg$2 as assertArg } from "../_common/from_file_url.js";
|
6
6
|
|
7
7
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js
|
8
8
|
/**
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import { CHAR_COLON } from "../_common/constants.js";
|
6
6
|
import { isPathSeparator, isWindowsDeviceRoot } from "./_util.js";
|
7
|
-
import { assertArg
|
7
|
+
import { assertArg } from "../_common/normalize.js";
|
8
8
|
import { normalizeString } from "../_common/normalize_string.js";
|
9
9
|
|
10
10
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js
|