kirbyup 2.1.1 → 2.1.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/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021-2022 Johann Schopplich <https://github.com/johannschopplich>
4
- Copyright (c) 2022 Jonas Kuske <https://github.com/jonaskuske>
3
+ Copyright (c) 2021-2023 Johann Schopplich <https://github.com/johannschopplich>
4
+ Copyright (c) 2022-2023 Jonas Kuske <https://github.com/jonaskuske>
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -252,6 +252,6 @@ Disables the default behavior of watching all PHP files for changes.
252
252
 
253
253
  ## License
254
254
 
255
- [MIT](./LICENSE) License © 2021-2022 [Johann Schopplich](https://github.com/johannschopplich)
255
+ [MIT](./LICENSE) License © 2021-2023 [Johann Schopplich](https://github.com/johannschopplich)
256
256
 
257
- [MIT](./LICENSE) License © 2022 [Jonas Kuske](https://github.com/jonaskuske)
257
+ [MIT](./LICENSE) License © 2022-2023 [Jonas Kuske](https://github.com/jonaskuske)
package/dist/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { cac } from 'cac';
2
- import { n as name, b as build, s as serve, v as version, h as handleError } from './shared/kirbyup.29eac34f.mjs';
2
+ import { n as name, b as build, s as serve, v as version, h as handleError } from './shared/kirbyup.7be0137b.mjs';
3
3
  import 'node:fs';
4
4
  import 'node:fs/promises';
5
5
  import 'pathe';
package/dist/index.mjs CHANGED
@@ -12,7 +12,7 @@ import 'vite-plugin-full-reload';
12
12
  import 'postcss-load-config';
13
13
  import 'postcss-logical';
14
14
  import 'postcss-dir-pseudo-class';
15
- export { b as build, s as serve } from './shared/kirbyup.29eac34f.mjs';
15
+ export { b as build, s as serve } from './shared/kirbyup.7be0137b.mjs';
16
16
  import 'zlib';
17
17
  import 'util';
18
18
  import 'fs';
@@ -20,7 +20,7 @@ import MagicString from 'magic-string';
20
20
  import { detect } from 'detect-package-manager';
21
21
 
22
22
  const name = "kirbyup";
23
- const version = "2.1.1";
23
+ const version = "2.1.3";
24
24
 
25
25
  class PrettyError extends Error {
26
26
  constructor(message) {
@@ -112,7 +112,7 @@ for (const methodName of ['rerender', 'reload']) {
112
112
 
113
113
  if (key) {
114
114
  const pluginComponents = window.panel.plugins.components
115
- const usedComponentDefs = window.panel.$vue.$options.components
115
+ const usedComponentDefs = window.panel.$vue._vnode.componentInstance.$options.components
116
116
 
117
117
  for (const componentName in pluginComponents) {
118
118
  if (updatedDef[key] === pluginComponents[componentName][key]) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kirbyup",
3
- "version": "2.1.1",
4
- "packageManager": "pnpm@7.18.1",
3
+ "version": "2.1.3",
4
+ "packageManager": "pnpm@7.24.3",
5
5
  "description": "Zero-config bundler for Kirby Panel plugins",
6
6
  "author": {
7
7
  "name": "Johann Schopplich",
@@ -55,7 +55,7 @@
55
55
  "dist"
56
56
  ],
57
57
  "engines": {
58
- "node": "^16 || ^18"
58
+ "node": ">=16"
59
59
  },
60
60
  "scripts": {
61
61
  "build": "unbuild",