@calcit/procs 0.5.14 → 0.5.17

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/README.md CHANGED
@@ -18,9 +18,7 @@ Build and install with Rust:
18
18
  curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
19
19
 
20
20
  # get Calcit
21
- git clone git@github.com:calcit-lang/calcit_runner.rs.git calcit/
22
- cd calcit/
23
- cargo install --path=./
21
+ cargo install calcit_runner
24
22
  ```
25
23
 
26
24
  For Ubuntu 20.04, try binaries from http://bin.calcit-lang.org/linux/ , which are provided for [CI usages](https://github.com/calcit-lang/respo-calcit-workflow/blob/main/.github/workflows/upload.yaml#L28-L37).
@@ -1,6 +1,6 @@
1
1
  var _a;
2
2
  // CALCIT VERSION
3
- export const calcit_version = "0.5.14";
3
+ export const calcit_version = "0.5.17";
4
4
  import "@calcit/ternary-tree";
5
5
  import { parse } from "@cirru/parser.ts";
6
6
  import { writeCirruCode } from "@cirru/writer.ts";
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.5.14",
3
+ "version": "0.5.17",
4
4
  "main": "./lib/calcit.procs.js",
5
5
  "devDependencies": {
6
- "@types/node": "^16.11.11",
7
- "esbuild": "^0.14.2",
8
- "typescript": "^4.5.2"
6
+ "@types/node": "^17.0.18",
7
+ "esbuild": "^0.14.21",
8
+ "typescript": "^4.5.5"
9
9
  },
10
10
  "scripts": {
11
11
  "compile": "rm -rfv lib/* && tsc",
@@ -1,5 +1,5 @@
1
1
  // CALCIT VERSION
2
- export const calcit_version = "0.5.14";
2
+ export const calcit_version = "0.5.17";
3
3
 
4
4
  import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree";
5
5
  import { parse, ICirruNode } from "@cirru/parser.ts";