@phystack/device-simulator 6.3.3 → 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 +16 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
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
|
+
|
|
12
|
+
## 6.3.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies []:
|
|
17
|
+
- @phystack/hub-device@6.3.4
|
|
18
|
+
|
|
3
19
|
## 6.3.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phystack/device-simulator",
|
|
3
|
-
"version": "6.3.
|
|
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.
|
|
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