Skip to content

Commit

Permalink
fix(build): use import path mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
d-koppenhagen committed Jun 12, 2023
1 parent d2cd91c commit e5f9900
Show file tree
Hide file tree
Showing 17 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationDrop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<AnimationCommonProps & { speed?: number; side?: number }>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationFade.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<AnimationCommonProps>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationFeature.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<AnimationCommonProps>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationPath.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
import type { LineString } from "ol/geom";
const props = withDefaults(
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationShake.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationSlide.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<AnimationCommonProps & { speed?: number }>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationTeleport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
animationCommonDefaultProps,
type AnimationCommonProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<AnimationCommonProps>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/animations/OlAnimationZoom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import useAnimation from "@/composables/useAnimation";
import {
type AnimationCommonProps,
animationCommonDefaultProps,
} from "./AnimationCommonProps";
} from "@/components/animations/AnimationCommonProps";
const props = withDefaults(
defineProps<
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlAnimatedClusterLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
import type { Point } from "ol/geom";
const props = withDefaults(
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlHeatmapLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
const props = withDefaults(
defineProps<
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlImageLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
const props = withDefaults(
defineProps<LayersCommonProps>(),
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlTileLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
const props = withDefaults(
defineProps<
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlVectorImageLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
import type { Map } from "ol";
const props = withDefaults(
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlVectorLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
import type { StyleLike } from "ol/style/Style";
import type { FlatStyleLike } from "ol/style/flat";
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlWebglPointsLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
type StyleType = {
symbol: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/layers/OlWebglTileLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties
import {
layersCommonDefaultProps,
type LayersCommonProps,
} from "./LayersCommonProps";
} from "@/components/layers/LayersCommonProps";
const props = withDefaults(
defineProps<
Expand Down

0 comments on commit e5f9900

Please sign in to comment.