@thinkpixellab-public/px-vue 4.0.2 → 4.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thinkpixellab-public/px-vue",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "General purpose Vue components and helpers that can be used across projects.",
5
5
  "author": "Pixel Lab",
6
6
  "license": "MIT",
package/plugins/common.js CHANGED
@@ -48,7 +48,7 @@ export default {
48
48
 
49
49
  // $eventBus is only client-side but we want to avoid warnings about missing $eventBus
50
50
  // for inject called during setup on server-side.
51
- if (process.server) {
51
+ if (isServer()) {
52
52
  app.provide('$eventBus', null);
53
53
  }
54
54
  },