Skip to content

Commit

Permalink
release 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Aug 25, 2024
1 parent 187dab8 commit 1c9a687
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"dist/*",
"src/"
],
"version": "0.0.12",
"version": "0.0.13",
"scripts": {
"test": "jest .",
"lint": "eslint src --fix && tsc --noEmit && prettier --write .",
"build": "rm -fr dist && npm run build-lib && npm run build-dts",
"prepublishOnly": "npm run build",
"prepublishOnly": "npm run lint && npm test && npm run build",
"build-lib": "tsc && vite build --emptyOutDir -c vite.lib.config.js",
"build-dts": "dts-bundle-generator -o dist/maplibre-gl-indoor.d.ts src/index.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion src/IndoorMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { LayerSpecification } from "maplibre-gl";

import type { IndoorMapOptions, LevelsRange } from "./Types";

import { extractLevelsRangeAndBounds } from "./GeojsonHelper";
import { extractLevelsRangeAndBounds } from "./levelFromGeojson";
import Style from "./style";

class IndoorMap {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/GeojsonHelper.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
extractLevelRangeFromFeature,
parseLevelRange,
} from "../src/GeojsonHelper";
} from "../src/levelFromGeojson";

describe("extractLevelRangeFromFeature", () => {
test("gibberish", () => {
Expand Down

0 comments on commit 1c9a687

Please sign in to comment.