@merkur/tools 0.32.0 → 0.34.0

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
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.34.0](https://github.com/mjancarik/merkur/compare/v0.33.0...v0.34.0) (2023-10-11)
7
+
8
+ **Note:** Version bump only for package @merkur/tools
9
+
10
+
11
+
12
+
13
+
14
+ # [0.33.0](https://github.com/mjancarik/merkur/compare/v0.32.1...v0.33.0) (2023-08-10)
15
+
16
+ **Note:** Version bump only for package @merkur/tools
17
+
18
+
19
+
20
+
21
+
6
22
  # [0.32.0](https://github.com/mjancarik/merkur/compare/v0.31.1...v0.32.0) (2023-07-14)
7
23
 
8
24
  **Note:** Version bump only for package @merkur/tools
@@ -14,6 +14,6 @@ require('yargs')
14
14
  },
15
15
  async (argv) => {
16
16
  return livereload(argv);
17
- }
17
+ },
18
18
  )
19
19
  .help().argv;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merkur/tools",
3
- "version": "0.32.0",
3
+ "version": "0.34.0",
4
4
  "description": "Merkur tools.",
5
5
  "bin": {
6
6
  "merkur-tools": "./bin/merkurTools.js"
@@ -56,5 +56,5 @@
56
56
  "peerDependencies": {
57
57
  "express": "*"
58
58
  },
59
- "gitHead": "c45ffe12725e3c4afcf7f13869a25a96f6807055"
59
+ "gitHead": "3bc4a1efb8f8d5cee6bcf5f1454809747904153c"
60
60
  }
@@ -127,7 +127,7 @@ window.__merkur_dev__ = window.__merkur_dev__ || {};
127
127
  window.__merkur_dev__.webSocketOptions =
128
128
  window.__merkur_dev__.webSocketOptions || {};
129
129
  window.__merkur_dev__.webSocket = new WebSocketMerkur(
130
- window.__merkur_dev__.webSocketOptions
130
+ window.__merkur_dev__.webSocketOptions,
131
131
  )
132
132
  .init()
133
133
  .subscribe(({ to, command }) => {
package/websocket.cjs CHANGED
@@ -18,7 +18,7 @@ function createServer(options = {}) {
18
18
  options = Object.assign(
19
19
  {},
20
20
  { port: process.env.MERKUR_PLAYGROUND_LIVERELOAD_PORT },
21
- options
21
+ options,
22
22
  );
23
23
 
24
24
  let server = null;
@@ -42,7 +42,7 @@ function createClient(options) {
42
42
  options = Object.assign(
43
43
  {},
44
44
  { port: process.env.MERKUR_PLAYGROUND_LIVERELOAD_PORT },
45
- options
45
+ options,
46
46
  );
47
47
 
48
48
  return new WebSocket('ws://localhost:' + options.port);