Skip to content

Commit e5f9900

Browse files
committed
fix(build): use import path mapping
see: vuejs/core#8140
1 parent d2cd91c commit e5f9900

17 files changed

+23
-23
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/animations/OlAnimationDrop.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<AnimationCommonProps & { speed?: number; side?: number }>(),

src/components/animations/OlAnimationFade.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<AnimationCommonProps>(),

src/components/animations/OlAnimationFeature.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
1111
import {
1212
animationCommonDefaultProps,
1313
type AnimationCommonProps,
14-
} from "./AnimationCommonProps";
14+
} from "@/components/animations/AnimationCommonProps";
1515
1616
const props = withDefaults(
1717
defineProps<AnimationCommonProps>(),

src/components/animations/OlAnimationPath.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
import type { LineString } from "ol/geom";
1313
1414
const props = withDefaults(

src/components/animations/OlAnimationShake.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<

src/components/animations/OlAnimationSlide.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<AnimationCommonProps & { speed?: number }>(),

src/components/animations/OlAnimationTeleport.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
animationCommonDefaultProps,
1010
type AnimationCommonProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<AnimationCommonProps>(),

src/components/animations/OlAnimationZoom.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
88
import {
99
type AnimationCommonProps,
1010
animationCommonDefaultProps,
11-
} from "./AnimationCommonProps";
11+
} from "@/components/animations/AnimationCommonProps";
1212
1313
const props = withDefaults(
1414
defineProps<

src/components/layers/OlAnimatedClusterLayer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
1414
import {
1515
layersCommonDefaultProps,
1616
type LayersCommonProps,
17-
} from "./LayersCommonProps";
17+
} from "@/components/layers/LayersCommonProps";
1818
import type { Point } from "ol/geom";
1919
2020
const props = withDefaults(

0 commit comments

Comments
 (0)