@calcit/procs 0.5.21 → 0.5.24

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
@@ -29,9 +29,11 @@ Snippets evaling:
29
29
 
30
30
  ```bash
31
31
  cr -e 'range 100'
32
+ ```
32
33
 
34
+ multi-lines snippet:
33
35
 
34
- # multi-lines snippet
36
+ ```bash
35
37
  cr -e '
36
38
 
37
39
  println "|a demo"
@@ -47,7 +49,7 @@ println "|a demo"
47
49
  Run with a [compact.cirru](https://github.com/calcit-lang/lilac/blob/master/compact.cirru):
48
50
 
49
51
  ```bash
50
- cr compact.cirru --1 # run only once
52
+ cr compact.cirru -1 # run only once
51
53
 
52
54
  cr compact.cirru # watch mode enabled by default
53
55
 
@@ -1,6 +1,6 @@
1
1
  var _a;
2
2
  // CALCIT VERSION
3
- export const calcit_version = "0.5.21";
3
+ export const calcit_version = "0.5.24";
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,10 +1,10 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.5.21",
3
+ "version": "0.5.24",
4
4
  "main": "./lib/calcit.procs.js",
5
5
  "devDependencies": {
6
6
  "@types/node": "^17.0.21",
7
- "esbuild": "^0.14.23",
7
+ "esbuild": "^0.14.25",
8
8
  "typescript": "^4.6.2"
9
9
  },
10
10
  "scripts": {
@@ -1,5 +1,5 @@
1
1
  // CALCIT VERSION
2
- export const calcit_version = "0.5.21";
2
+ export const calcit_version = "0.5.24";
3
3
 
4
4
  import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree";
5
5
  import { parse, ICirruNode } from "@cirru/parser.ts";