@phystack/device-simulator 6.3.4 → 6.3.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @phystack/device-simulator
2
2
 
3
+ ## 6.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#629](https://github.com/phystack/ps-platform/pull/629) [`a6c1c59`](https://github.com/phystack/ps-platform/commit/a6c1c5947dc21c29380a45f9bd33c5cd98899980) Thanks [@kamilplaczek-ombori](https://github.com/kamilplaczek-ombori)! - Add the missing `#!/usr/bin/env node` shebang to the `phy-simulator` bin entrypoint. Without it, a global npm install produced a bin script the shell tried to execute as shell code (`use strict: command not found`).
8
+
9
+ - Updated dependencies []:
10
+ - @phystack/hub-device@6.3.5
11
+
3
12
  ## 6.3.4
4
13
 
5
14
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  var __importDefault = (this && this.__importDefault) || function (mod) {
3
4
  return (mod && mod.__esModule) ? mod : { "default": mod };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phystack/device-simulator",
3
- "version": "6.3.4",
3
+ "version": "6.3.5",
4
4
  "description": "Standalone PhyStack device simulator for local app development.",
5
5
  "main": "dist/command.js",
6
6
  "license": "UNLICENSED",
@@ -20,7 +20,7 @@
20
20
  "test:ci": "bun test src"
21
21
  },
22
22
  "dependencies": {
23
- "@phystack/hub-device": "6.3.4",
23
+ "@phystack/hub-device": "6.3.5",
24
24
  "chalk": "^3.0.0",
25
25
  "commander": "^5.0.0",
26
26
  "fs-extra": "^8.1.0",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { Command } from "commander";
2
3
  import { getPackageVersion, handleError } from "./utils";
3
4
  import start from "./commands/start";