@atlaspack/runtime-browser-hmr 2.14.5-dev.14 → 2.14.5-dev.55

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,37 @@
1
1
  # @atlaspack/runtime-browser-hmr
2
2
 
3
+ ## 2.14.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/utils@2.14.9
9
+ - @atlaspack/plugin@2.14.9
10
+
11
+ ## 2.14.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies []:
16
+ - @atlaspack/utils@2.14.8
17
+ - @atlaspack/plugin@2.14.8
18
+
19
+ ## 2.14.7
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies []:
24
+ - @atlaspack/utils@2.14.7
25
+ - @atlaspack/plugin@2.14.7
26
+
27
+ ## 2.14.6
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies []:
32
+ - @atlaspack/utils@2.14.6
33
+ - @atlaspack/plugin@2.14.6
34
+
3
35
  ## 2.14.5
4
36
 
5
37
  ### Patch Changes
@@ -178,8 +178,10 @@ if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
178
178
  console.error(e.message);
179
179
  }
180
180
  };
181
- ws.onclose = function () {
182
- console.warn('[parcel] 🚨 Connection to the HMR server was lost');
181
+ ws.onclose = function (e) {
182
+ if (process.env.ATLASPACK_BUILD_ENV !== 'test') {
183
+ console.warn('[parcel] 🚨 Connection to the HMR server was lost');
184
+ }
183
185
  };
184
186
  }
185
187
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/runtime-browser-hmr",
3
- "version": "2.14.5-dev.14+8c369e38c",
3
+ "version": "2.14.5-dev.55+5a11f33c5",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,9 +15,9 @@
15
15
  "node": ">= 16.0.0"
16
16
  },
17
17
  "dependencies": {
18
- "@atlaspack/plugin": "2.14.5-dev.14+8c369e38c",
19
- "@atlaspack/utils": "2.14.5-dev.14+8c369e38c"
18
+ "@atlaspack/plugin": "2.14.5-dev.55+5a11f33c5",
19
+ "@atlaspack/utils": "2.14.5-dev.55+5a11f33c5"
20
20
  },
21
21
  "type": "commonjs",
22
- "gitHead": "8c369e38ccd428409811114aebd6044c27f90705"
22
+ "gitHead": "5a11f33c51ff74d1cf8d4b72cfa0fda833aa980a"
23
23
  }