kirbyup 2.1.1 → 2.1.2
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/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.
|
|
2
|
+
import { n as name, b as build, s as serve, v as version, h as handleError } from './shared/kirbyup.f44725b4.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.
|
|
15
|
+
export { b as build, s as serve } from './shared/kirbyup.f44725b4.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.
|
|
23
|
+
const version = "2.1.2";
|
|
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]) {
|