origo-map / draw-plugin

Draw tool plugin for Origo
MIT License
1 stars 4 forks source link

Case-insensitive import refs in drawhandler.js prevent building on case sensitive systems #5

Closed Grammostola closed 5 years ago

Grammostola commented 5 years ago

import Select from 'ol/interaction/select'; import Modify from 'ol/interaction/modify'; import Draw from 'ol/interaction/draw'; import DoubleClickZoom from 'ol/interaction/doubleclickzoom'; import GeoJSON from 'ol/format/geojson';

wishes to become

import Select from 'ol/interaction/Select'; import Modify from 'ol/interaction/Modify'; import Draw from 'ol/interaction/Draw'; import DoubleClickZoom from 'ol/interaction/DoubleClickZoom'; import GeoJSON from 'ol/format/GeoJSON';

Thanks

tonnyandersson commented 5 years ago

@Grammostola Will fix.

tonnyandersson commented 5 years ago

Fixed with #7.