@calcit/procs 0.8.28 → 0.8.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.8.28",
3
+ "version": "0.8.29",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.11.8",
@@ -13,7 +13,8 @@
13
13
  "eval": "cargo run --bin cr -- -e",
14
14
  "try-rs": "cargo run --bin cr -- calcit/test.cirru -1",
15
15
  "try-js-brk": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node --inspect-brk js-out/main.mjs",
16
- "try-js": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node js-out/main.mjs"
16
+ "try-js": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node js-out/main.mjs",
17
+ "try-ir": "cargo run --bin cr -- calcit/test.cirru --emit-ir -1"
17
18
  },
18
19
  "repository": {
19
20
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.8.28",
3
+ "version": "0.8.29",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.11.8",
@@ -13,7 +13,8 @@
13
13
  "eval": "cargo run --bin cr -- -e",
14
14
  "try-rs": "cargo run --bin cr -- calcit/test.cirru -1",
15
15
  "try-js-brk": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node --inspect-brk js-out/main.mjs",
16
- "try-js": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node js-out/main.mjs"
16
+ "try-js": "cargo run --bin cr -- calcit/test.cirru --emit-js -1 && node js-out/main.mjs",
17
+ "try-ir": "cargo run --bin cr -- calcit/test.cirru --emit-ir -1"
17
18
  },
18
19
  "repository": {
19
20
  "type": "git",
@@ -1,3 +1,3 @@
1
1
 
2
2
  [toolchain]
3
- channel = "nightly"
3
+ channel = "stable"