@fedify/vocab-tools 2.0.0-dev.1875 → 2.0.0-dev.196
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/LICENSE +1 -1
- package/README.md +2 -1
- package/deno.json +6 -1
- package/dist/__snapshots__/class.test.ts.deno.snap +81555 -0
- package/dist/__snapshots__/class.test.ts.node.snap +81553 -0
- package/dist/__snapshots__/class.test.ts.snap +81555 -0
- package/dist/class.test.d.ts +1 -0
- package/dist/class.test.js +1893 -0
- package/dist/fs-B12zeNxV.js +19 -0
- package/dist/fs.test.d.ts +1 -0
- package/dist/fs.test.js +28 -0
- package/dist/mod.cjs +3 -1
- package/dist/mod.js +3 -1
- package/dist/schema-s8NE7Bb_.js +96 -0
- package/dist/schema.test.d.ts +1 -0
- package/dist/schema.test.js +140 -0
- package/package.json +1 -1
- package/src/class.test.ts +3 -3
- package/tsdown.config.ts +52 -17
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<!-- deno-fmt-ignore-file -->
|
|
2
2
|
|
|
3
3
|
@fedify/vocab-tools
|
|
4
|
-
|
|
4
|
+
===================
|
|
5
5
|
|
|
6
6
|
This package contains the utilities for working with Activity
|
|
7
7
|
Vocabulary objects, which are auto-generated from the IDL.
|
|
8
8
|
|
|
9
|
+
|
|
9
10
|
Installation
|
|
10
11
|
------------
|
|
11
12
|
|
package/deno.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/vocab-tools",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.196+c3cfc0a9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/mod.ts"
|
|
@@ -19,6 +19,11 @@
|
|
|
19
19
|
"node_modules",
|
|
20
20
|
"src/schema.yaml"
|
|
21
21
|
],
|
|
22
|
+
"publish": {
|
|
23
|
+
"exclude": [
|
|
24
|
+
"**/*.test.ts"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
22
27
|
"tasks": {
|
|
23
28
|
"check": "deno fmt --check && deno lint && deno check src/*.ts",
|
|
24
29
|
"test": "deno test -A"
|