Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Fixes #1947 Fix webpack reordering import statements #1955

Merged
merged 1 commit into from
Nov 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

self.importScripts("three.min.js");

import "./deps";
import {
GeoJsonTilerService,
VectorTileDecoderService
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* Copyright (C) 2017-2020 HERE Europe B.V.
* Licensed under Apache 2.0, see full license in LICENSE
* SPDX-License-Identifier: Apache-2.0
*/
// This file is a simple work for webpack reordering the dependencies, i.e. imports are put
// before importScripts.
self.importScripts("three.min.js");