warpo 2.2.0 → 2.2.1

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.
Files changed (2) hide show
  1. package/dist/lib.js +1 -1
  2. package/package.json +1 -1
package/dist/lib.js CHANGED
@@ -28,7 +28,7 @@ function get_binary() {
28
28
  }
29
29
  export async function main(options) {
30
30
  const binary = get_binary();
31
- const ps = spawn(binary, options.argv.slice(2), { stdio: "inherit", env: options.env });
31
+ const ps = spawn(binary, options.argv, { stdio: "inherit", env: options.env });
32
32
  return new Promise((resolve, reject) => {
33
33
  function shutdown() {
34
34
  ps.kill("SIGTERM");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warpo",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "next generation AssemblyScript compiler with optimizations",
5
5
  "type": "module",
6
6
  "bin": {