Skip to content

Commit

Permalink
update versioning; improve enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr Martian committed Jan 7, 2025
1 parent 6568ddd commit bef53c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified bun.lockb
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s2-tilejson",
"version": "1.8.1",
"version": "1.8.2",
"description": "Backwards compatible JSON format for describing s2 map tilesets.",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -50,8 +50,8 @@
"homepage": "https://github.com/Open-S2/s2-tilejson#readme",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.3",
"@types/bun": "^1.1.15",
"@types/node": "^22.10.5",
"@types/pbf": "^3.0.5",
"ajv": "^8.17.1",
"coveralls": "^3.1.1",
Expand All @@ -62,8 +62,8 @@
"eslint-plugin-tsdoc": "^0.4.0",
"prettier": "^3.4.2",
"typedoc": "^0.27.6",
"typedoc-plugin-coverage": "^3.4.0",
"typedoc-plugin-coverage": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
"typescript-eslint": "^8.19.1"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export type Face = 0 | 1 | 2 | 3 | 4 | 5;
export type BBox = [left: number, bottom: number, right: number, top: number];

/** 1: points, 2: lines, 3: polys, 4: points3D, 5: lines3D, 6: polys3D, 7: raster */
export enum DrawType {
export const enum DrawType {
/** Collection of points */
Points = 1,
/** Collection of lines */
Expand Down

0 comments on commit bef53c3

Please sign in to comment.