Comparing version 0.1.9 to 0.2.0
{ | ||
"name": "quadbin", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"description": "Utility functions for working with Quadbins", | ||
"license": "MIT", | ||
"main": "dist/cjs/index.js", | ||
"type": "module", | ||
"main": "dist/cjs/index.cjs", | ||
"module": "dist/esm/index.js", | ||
"umd:main": "dist/umd/index.js", | ||
"types": "dist/types/index.d.js", | ||
"types": "dist/types/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
"import": "./dist/esm/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"types": "./dist/types/index.d.ts" | ||
"require": "./dist/cjs/index.cjs" | ||
}, | ||
"./*": "./*" | ||
}, | ||
"keywords": ["quadbin", "webgl", "visualization"], | ||
"keywords": [ | ||
"quadbin", | ||
"webgl", | ||
"visualization" | ||
], | ||
"repository": { | ||
@@ -24,8 +29,8 @@ "type": "git", | ||
"scripts": { | ||
"clean": "rm -r dist/*", | ||
"clean": "rm -rf dist/*", | ||
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:types && yarn build:umd", | ||
"build:cjs": "tsc -p tsconfig/tsconfig.cjs.json", | ||
"build:cjs": "tsc -p tsconfig/tsconfig.cjs.json && mv dist/cjs/index.js dist/cjs/index.cjs", | ||
"build:esm": "tsc -p tsconfig/tsconfig.esm.json", | ||
"build:types": "tsc -p tsconfig/tsconfig.types.json", | ||
"build:umd": "webpack --config tsconfig/webpack.config.js", | ||
"build:umd": "webpack --config tsconfig/webpack.config.cjs", | ||
"lint": "npx prettier --check src", | ||
@@ -43,3 +48,3 @@ "test": "yarn lint && yarn test-fast", | ||
"prettier": "^2.4.1", | ||
"tape": "^4.11.0", | ||
"tape": "^5.3.0", | ||
"ts-loader": "^9.2.5", | ||
@@ -46,0 +51,0 @@ "typescript": "^4.4.4", |
@@ -9,5 +9,6 @@ import test from 'tape'; | ||
hexToBigInt | ||
} from '../src/index'; | ||
import {tileToQuadkey} from './quadkey-utils'; | ||
} from 'quadbin'; | ||
import {tileToQuadkey} from './quadkey-utils.js'; | ||
const TEST_TILES = [ | ||
@@ -51,9 +52,9 @@ {x: 0, y: 0, z: 0, q: 5192650370358181887n}, | ||
// Zoom:26 test not agreeing with Python | ||
import PointGeometry from './data/PointGeometry.json'; | ||
import MultiPointGeometry from './data/MultiPointGeometry.json'; | ||
import LineStringGeometry from './data/LineStringGeometry.json'; | ||
import MultiLineStringGeometry from './data/MultiLineStringGeometry.json'; | ||
import PolygonGeometry from './data/PolygonGeometry.json'; | ||
import PolygonAntimeridianGeometry from './data/PolygonAntimeridianGeometry.json'; | ||
import MultiPolygonGeometry from './data/MultiPolygonGeometry.json'; | ||
import PointGeometry from './data/PointGeometry.json' assert {type: 'json'}; | ||
import MultiPointGeometry from './data/MultiPointGeometry.json' assert {type: 'json'}; | ||
import LineStringGeometry from './data/LineStringGeometry.json' assert {type: 'json'}; | ||
import MultiLineStringGeometry from './data/MultiLineStringGeometry.json' assert {type: 'json'}; | ||
import PolygonGeometry from './data/PolygonGeometry.json' assert {type: 'json'}; | ||
import PolygonAntimeridianGeometry from './data/PolygonAntimeridianGeometry.json' assert {type: 'json'}; | ||
import MultiPolygonGeometry from './data/MultiPolygonGeometry.json' assert {type: 'json'}; | ||
const testCases = [ | ||
@@ -60,0 +61,0 @@ PointGeometry, |
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"jsx": "react", | ||
"target": "es2022", | ||
"strict": true, | ||
@@ -17,10 +16,8 @@ "noImplicitAny": false, | ||
"paths": { | ||
"test": ["test"] | ||
"test": ["test"], | ||
"quadbin": ["src"] | ||
} | ||
}, | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
] | ||
"include": ["src"], | ||
"exclude": [] | ||
} |
Sorry, the diff of this file is not supported yet
26889
Yes
609