functionalscript 0.3.0 → 0.3.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/.github/workflows/ci.yml +1 -0
- package/deno.json +61 -61
- package/dev/module.ts +1 -1
- package/package.json +1 -1
package/.github/workflows/ci.yml
CHANGED
package/deno.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functionalscript/functionalscript",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"exports": {
|
|
6
|
-
"./com/cpp": "./
|
|
7
|
-
"./com/cs": "./
|
|
8
|
-
"./com/rust": "./
|
|
9
|
-
"./com/types": "./
|
|
10
|
-
"./commonjs/build": "./
|
|
11
|
-
"./commonjs": "./
|
|
12
|
-
"./commonjs/module/function": "./
|
|
13
|
-
"./commonjs/module": "./
|
|
14
|
-
"./commonjs/package/dependencies": "./
|
|
15
|
-
"./commonjs/package": "./
|
|
16
|
-
"./commonjs/path": "./
|
|
17
|
-
"./crypto/prime_field": "./
|
|
18
|
-
"./crypto/secp": "./
|
|
19
|
-
"./crypto/sha2": "./
|
|
20
|
-
"./dev": "./
|
|
21
|
-
"./dev/test": "./
|
|
22
|
-
"./djs": "./
|
|
23
|
-
"./djs/parser": "./
|
|
24
|
-
"./djs/serializer": "./
|
|
25
|
-
"./djs/tokenizer": "./
|
|
26
|
-
"./fsc": "./
|
|
27
|
-
"./fsm": "./
|
|
28
|
-
"./html": "./
|
|
29
|
-
"./js/tokenizer": "./
|
|
30
|
-
"./json": "./
|
|
31
|
-
"./json/parser": "./
|
|
32
|
-
"./json/serializer": "./
|
|
33
|
-
"./json/tokenizer": "./
|
|
34
|
-
"./nodejs/version": "./
|
|
35
|
-
"./text/ascii": "./
|
|
36
|
-
"./text": "./
|
|
37
|
-
"./text/sgr": "./
|
|
38
|
-
"./text/utf16": "./
|
|
39
|
-
"./text/utf8": "./
|
|
40
|
-
"./types/array": "./
|
|
41
|
-
"./types/bigfloat": "./
|
|
42
|
-
"./types/bigint": "./
|
|
43
|
-
"./types/bit_vec": "./
|
|
44
|
-
"./types/btree/find": "./
|
|
45
|
-
"./types/btree": "./
|
|
46
|
-
"./types/btree/remove": "./
|
|
47
|
-
"./types/btree/set": "./
|
|
48
|
-
"./types/btree/types": "./
|
|
49
|
-
"./types/byte_set": "./
|
|
50
|
-
"./types/function/compare": "./
|
|
51
|
-
"./types/function": "./
|
|
52
|
-
"./types/function/operator": "./
|
|
53
|
-
"./types/list": "./
|
|
54
|
-
"./types/map": "./
|
|
55
|
-
"./types/nibble_set": "./
|
|
56
|
-
"./types/nullable": "./
|
|
57
|
-
"./types/number": "./
|
|
58
|
-
"./types/object": "./
|
|
59
|
-
"./types/range": "./
|
|
60
|
-
"./types/range_map": "./
|
|
61
|
-
"./types/result": "./
|
|
62
|
-
"./types/sorted_list": "./
|
|
63
|
-
"./types/sorted_set": "./
|
|
64
|
-
"./types/string": "./
|
|
65
|
-
"./types/string_set": "./
|
|
6
|
+
"./com/cpp": "./com/cpp/module.f.ts",
|
|
7
|
+
"./com/cs": "./com/cs/module.f.ts",
|
|
8
|
+
"./com/rust": "./com/rust/module.f.ts",
|
|
9
|
+
"./com/types": "./com/types/module.f.ts",
|
|
10
|
+
"./commonjs/build": "./commonjs/build/module.f.ts",
|
|
11
|
+
"./commonjs": "./commonjs/module.f.ts",
|
|
12
|
+
"./commonjs/module/function": "./commonjs/module/function/module.f.ts",
|
|
13
|
+
"./commonjs/module": "./commonjs/module/module.f.ts",
|
|
14
|
+
"./commonjs/package/dependencies": "./commonjs/package/dependencies/module.f.ts",
|
|
15
|
+
"./commonjs/package": "./commonjs/package/module.f.ts",
|
|
16
|
+
"./commonjs/path": "./commonjs/path/module.f.ts",
|
|
17
|
+
"./crypto/prime_field": "./crypto/prime_field/module.f.ts",
|
|
18
|
+
"./crypto/secp": "./crypto/secp/module.f.ts",
|
|
19
|
+
"./crypto/sha2": "./crypto/sha2/module.f.ts",
|
|
20
|
+
"./dev": "./dev/module.f.ts",
|
|
21
|
+
"./dev/test": "./dev/test/module.f.ts",
|
|
22
|
+
"./djs": "./djs/module.f.ts",
|
|
23
|
+
"./djs/parser": "./djs/parser/module.f.ts",
|
|
24
|
+
"./djs/serializer": "./djs/serializer/module.f.ts",
|
|
25
|
+
"./djs/tokenizer": "./djs/tokenizer/module.f.ts",
|
|
26
|
+
"./fsc": "./fsc/module.f.ts",
|
|
27
|
+
"./fsm": "./fsm/module.f.ts",
|
|
28
|
+
"./html": "./html/module.f.ts",
|
|
29
|
+
"./js/tokenizer": "./js/tokenizer/module.f.ts",
|
|
30
|
+
"./json": "./json/module.f.ts",
|
|
31
|
+
"./json/parser": "./json/parser/module.f.ts",
|
|
32
|
+
"./json/serializer": "./json/serializer/module.f.ts",
|
|
33
|
+
"./json/tokenizer": "./json/tokenizer/module.f.ts",
|
|
34
|
+
"./nodejs/version": "./nodejs/version/module.f.ts",
|
|
35
|
+
"./text/ascii": "./text/ascii/module.f.ts",
|
|
36
|
+
"./text": "./text/module.f.ts",
|
|
37
|
+
"./text/sgr": "./text/sgr/module.f.ts",
|
|
38
|
+
"./text/utf16": "./text/utf16/module.f.ts",
|
|
39
|
+
"./text/utf8": "./text/utf8/module.f.ts",
|
|
40
|
+
"./types/array": "./types/array/module.f.ts",
|
|
41
|
+
"./types/bigfloat": "./types/bigfloat/module.f.ts",
|
|
42
|
+
"./types/bigint": "./types/bigint/module.f.ts",
|
|
43
|
+
"./types/bit_vec": "./types/bit_vec/module.f.ts",
|
|
44
|
+
"./types/btree/find": "./types/btree/find/module.f.ts",
|
|
45
|
+
"./types/btree": "./types/btree/module.f.ts",
|
|
46
|
+
"./types/btree/remove": "./types/btree/remove/module.f.ts",
|
|
47
|
+
"./types/btree/set": "./types/btree/set/module.f.ts",
|
|
48
|
+
"./types/btree/types": "./types/btree/types/module.f.ts",
|
|
49
|
+
"./types/byte_set": "./types/byte_set/module.f.ts",
|
|
50
|
+
"./types/function/compare": "./types/function/compare/module.f.ts",
|
|
51
|
+
"./types/function": "./types/function/module.f.ts",
|
|
52
|
+
"./types/function/operator": "./types/function/operator/module.f.ts",
|
|
53
|
+
"./types/list": "./types/list/module.f.ts",
|
|
54
|
+
"./types/map": "./types/map/module.f.ts",
|
|
55
|
+
"./types/nibble_set": "./types/nibble_set/module.f.ts",
|
|
56
|
+
"./types/nullable": "./types/nullable/module.f.ts",
|
|
57
|
+
"./types/number": "./types/number/module.f.ts",
|
|
58
|
+
"./types/object": "./types/object/module.f.ts",
|
|
59
|
+
"./types/range": "./types/range/module.f.ts",
|
|
60
|
+
"./types/range_map": "./types/range_map/module.f.ts",
|
|
61
|
+
"./types/result": "./types/result/module.f.ts",
|
|
62
|
+
"./types/sorted_list": "./types/sorted_list/module.f.ts",
|
|
63
|
+
"./types/sorted_set": "./types/sorted_set/module.f.ts",
|
|
64
|
+
"./types/string": "./types/string/module.f.ts",
|
|
65
|
+
"./types/string_set": "./types/string_set/module.f.ts"
|
|
66
66
|
},
|
|
67
67
|
"tasks": {
|
|
68
68
|
"doc": "deno doc --html **/module.f.ts",
|
package/dev/module.ts
CHANGED
|
@@ -188,7 +188,7 @@ export const index = async () => {
|
|
|
188
188
|
const n = '/module.f.ts'
|
|
189
189
|
const jsr_json = JSON.parse(await readFile(jj, { encoding: 'utf8' }))
|
|
190
190
|
const list = Object.keys(await loadModuleMap()).filter(v => v.endsWith(n))
|
|
191
|
-
const exportsA = list.filter(v => !v.startsWith('./out')).map(v => [v.replace(n, ''),
|
|
191
|
+
const exportsA = list.filter(v => !v.startsWith('./out')).map(v => [v.replace(n, ''), `./${v.substring(2)}`])
|
|
192
192
|
const exports = Object.fromEntries(exportsA)
|
|
193
193
|
await writeFile(
|
|
194
194
|
jj,
|