@calcit/procs 0.5.21 → 0.5.22
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 +4 -2
- package/lib/calcit.procs.js +1 -1
- package/package.json +2 -2
- package/ts-src/calcit.procs.ts +1 -1
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
|
-
|
|
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
|
|
52
|
+
cr compact.cirru -1 # run only once
|
|
51
53
|
|
|
52
54
|
cr compact.cirru # watch mode enabled by default
|
|
53
55
|
|
package/lib/calcit.procs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.22",
|
|
4
4
|
"main": "./lib/calcit.procs.js",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^17.0.21",
|
|
7
|
-
"esbuild": "^0.14.
|
|
7
|
+
"esbuild": "^0.14.25",
|
|
8
8
|
"typescript": "^4.6.2"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
package/ts-src/calcit.procs.ts
CHANGED