@calcit/procs 0.6.24 → 0.6.25
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/lib/calcit-data.mjs +0 -1
- package/lib/calcit.procs.mjs +1 -2
- package/lib/custom-formatter.mjs +0 -1
- package/lib/js-cirru.mjs +0 -1
- package/lib/js-list.mjs +0 -1
- package/lib/js-map.mjs +0 -1
- package/lib/js-record.mjs +0 -2
- package/lib/js-set.mjs +0 -1
- package/lib/js-tuple.mjs +0 -2
- package/package.json +3 -3
- package/ts-src/calcit.procs.mts +1 -1
package/lib/calcit-data.mjs
CHANGED
|
@@ -8,7 +8,6 @@ import { CalcitList, CalcitSliceList } from "./js-list.mjs";
|
|
|
8
8
|
import { CalcitSet, overwriteSetComparator } from "./js-set.mjs";
|
|
9
9
|
import { CalcitTuple } from "./js-tuple.mjs";
|
|
10
10
|
import { CalcitCirruQuote, cirru_deep_equal } from "./js-cirru.mjs";
|
|
11
|
-
import "@cirru/writer.ts";
|
|
12
11
|
// we have to inject cache in a dirty way in some cases
|
|
13
12
|
const calcit_dirty_hash_key = "_calcit_cached_hash";
|
|
14
13
|
let keywordIdx = 0;
|
package/lib/calcit.procs.mjs
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
var _a;
|
|
2
2
|
// CALCIT VERSION
|
|
3
|
-
export const calcit_version = "0.6.
|
|
3
|
+
export const calcit_version = "0.6.25";
|
|
4
4
|
import { parse } from "@cirru/parser.ts";
|
|
5
5
|
import { writeCirruCode } from "@cirru/writer.ts";
|
|
6
|
-
import "./js-primes.mjs";
|
|
7
6
|
import { CalcitSymbol, CalcitKeyword, CalcitRef, CalcitRecur, kwd, refsRegistry, toString, getStringName, _$n__$e_, hashFunction, } from "./calcit-data.mjs";
|
|
8
7
|
import { CalcitRecord } from "./js-record.mjs";
|
|
9
8
|
export * from "./calcit-data.mjs";
|
package/lib/custom-formatter.mjs
CHANGED
package/lib/js-cirru.mjs
CHANGED
package/lib/js-list.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as ternaryTree from "@calcit/ternary-tree";
|
|
2
|
-
import "./js-primes.mjs";
|
|
3
2
|
import { initTernaryTreeList, initTernaryTreeListFromRange, listLen, listGet, assocList, listToItems, dissocList, assocBefore, assocAfter, } from "@calcit/ternary-tree";
|
|
4
3
|
import { CalcitMap, CalcitSliceMap } from "./js-map.mjs";
|
|
5
4
|
import { CalcitSet } from "./js-set.mjs";
|
package/lib/js-map.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as ternaryTree from "@calcit/ternary-tree";
|
|
2
|
-
import "./js-primes.mjs";
|
|
3
2
|
import { CalcitSet } from "./js-set.mjs";
|
|
4
3
|
import { mapLen, assocMap, dissocMap, isMapEmpty, toPairsArray, mapGetDefault, initEmptyTernaryTreeMap, initTernaryTreeMapFromArray, } from "@calcit/ternary-tree";
|
|
5
4
|
import { isNestedCalcitData, tipNestedCalcitData, toString } from "./calcit-data.mjs";
|
package/lib/js-record.mjs
CHANGED
package/lib/js-set.mjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import "./js-primes.mjs";
|
|
2
1
|
import { toString } from "./calcit-data.mjs";
|
|
3
2
|
import { mapLen, assocMap, dissocMap, toPairsArray, contains, initTernaryTreeMapFromArray, initEmptyTernaryTreeMap, } from "@calcit/ternary-tree";
|
|
4
3
|
import * as ternaryTree from "@calcit/ternary-tree";
|
package/lib/js-tuple.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.25",
|
|
4
4
|
"main": "./lib/calcit.procs.mjs",
|
|
5
5
|
"devDependencies": {
|
|
6
|
-
"@types/node": "^18.
|
|
7
|
-
"typescript": "^
|
|
6
|
+
"@types/node": "^18.15.3",
|
|
7
|
+
"typescript": "^5.0.2"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"compile": "rm -rfv lib/* && tsc",
|
package/ts-src/calcit.procs.mts
CHANGED