@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 +1 -3
- package/lib/calcit.procs.js +1 -1
- package/package.json +4 -4
- package/ts-src/calcit.procs.ts +1 -1
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
|
-
|
|
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).
|
package/lib/calcit.procs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.17",
|
|
4
4
|
"main": "./lib/calcit.procs.js",
|
|
5
5
|
"devDependencies": {
|
|
6
|
-
"@types/node": "^
|
|
7
|
-
"esbuild": "^0.14.
|
|
8
|
-
"typescript": "^4.5.
|
|
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",
|
package/ts-src/calcit.procs.ts
CHANGED