@tishlang/tish 1.0.19 → 1.0.21

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.
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "tishlang"
3
- version = "1.0.19"
3
+ version = "1.0.21"
4
4
  edition = "2021"
5
5
  description = "Tish CLI - run, REPL, compile to native"
6
6
  license-file = { workspace = true }
@@ -1,9 +1,10 @@
1
1
  //! Verify && and || short-circuit (JumpIfFalse before evaluating right side).
2
+ //! Moved from tish_bytecode to break publish cycle (bytecode dev-depends on vm, vm depends on bytecode).
2
3
  use std::path::Path;
3
4
  use tishlang_bytecode::{compile, compile_unoptimized, Opcode};
4
5
  use tishlang_compile::{merge_modules, resolve_project};
5
- use tishlang_parser::parse;
6
6
  use tishlang_opt;
7
+ use tishlang_parser::parse;
7
8
  use tishlang_vm;
8
9
 
9
10
  #[test]
@@ -14,4 +14,3 @@ tishlang_core = { path = "../tish_core", version = ">=0.1" }
14
14
  tishlang_compile = { path = "../tish_compile", version = ">=0.1" }
15
15
  tishlang_parser = { path = "../tish_parser", version = ">=0.1" }
16
16
  tishlang_opt = { path = "../tish_opt", version = ">=0.1" }
17
- tishlang_vm = { path = "../tish_vm", version = ">=0.1" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tishlang/tish",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "description": "Tish - minimal TS/JS-compatible language. Run, REPL, compile to native.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
Binary file