@accelint/geo 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/catalog-info.yaml +2 -4
- package/package.json +45 -44
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# @accelint/geo
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bb73a1e: Ensure dependencies all follow the same semver range across devtk, maptk, and designtk.
|
|
8
|
+
|
|
3
9
|
## 0.4.1
|
|
10
|
+
|
|
4
11
|
### Patch Changes
|
|
5
12
|
|
|
6
13
|
- 34c42a0: Swap bundling to tsdown and auto generate exports entries in package.json.
|
|
7
14
|
|
|
8
15
|
## 0.4.0
|
|
16
|
+
|
|
9
17
|
### Minor Changes
|
|
10
18
|
|
|
11
19
|
- cfe734a: Fix @accelint/geo UTM parsing and formatting. UTM format will no longer return MGRS format.
|
package/catalog-info.yaml
CHANGED
|
@@ -11,12 +11,11 @@ metadata:
|
|
|
11
11
|
|
|
12
12
|
Dependencies:
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
accelint_vitest-config@0.1.5
|
|
14
|
+
accelint_typescript-config@0.1.4, accelint_vitest-config@0.1.6
|
|
16
15
|
annotations:
|
|
17
16
|
backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/packages/geo/catalog-info.yaml
|
|
18
17
|
backstage.io/techdocs-ref: dir:.
|
|
19
|
-
package/version: 0.4.
|
|
18
|
+
package/version: 0.4.2
|
|
20
19
|
github.com/project-slug: gohypergiant/standard-toolkit
|
|
21
20
|
links:
|
|
22
21
|
- url: https://github.com/gohypergiant/standard-toolkit/tree/main/packages/geo
|
|
@@ -31,6 +30,5 @@ spec:
|
|
|
31
30
|
lifecycle: production
|
|
32
31
|
owner: group:default/pathfinder
|
|
33
32
|
dependsOn:
|
|
34
|
-
- component:accelint_constellation-tracker
|
|
35
33
|
- component:accelint_typescript-config
|
|
36
34
|
- component:accelint_vitest-config
|
package/package.json
CHANGED
|
@@ -1,33 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/package",
|
|
3
2
|
"name": "@accelint/geo",
|
|
4
|
-
"title": "Accelint Geo",
|
|
5
3
|
"description": "A collection of JavaScript functions for working with coordinates and geospatial data.",
|
|
4
|
+
"version": "0.4.2",
|
|
6
5
|
"author": "https://hypergiant.com",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
6
|
+
"$schema": "https://json.schemastore.org/package",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@types/geodesy": "^2.2.8",
|
|
9
|
+
"geodesy": "^2.4.0"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"tsdown": "^0.18.0",
|
|
13
|
+
"typescript": "^5.9.3",
|
|
14
|
+
"vitest": "^4.0.15",
|
|
15
|
+
"@accelint/typescript-config": "0.1.4",
|
|
16
|
+
"@accelint/vitest-config": "0.1.6"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=22",
|
|
20
|
+
"pnpm": ">=10"
|
|
19
21
|
},
|
|
20
|
-
"type": "module",
|
|
21
|
-
"files": [
|
|
22
|
-
"./dist/**",
|
|
23
|
-
"./catalog-info.yaml",
|
|
24
|
-
"./CHANGELOG.md",
|
|
25
|
-
"./package.json",
|
|
26
|
-
"./README.md"
|
|
27
|
-
],
|
|
28
|
-
"main": "./dist/index.js",
|
|
29
|
-
"module": "./dist/index.js",
|
|
30
|
-
"types": "./dist/index.d.ts",
|
|
31
22
|
"exports": {
|
|
32
23
|
".": "./dist/index.js",
|
|
33
24
|
"./cartesian": "./dist/cartesian.js",
|
|
@@ -66,34 +57,44 @@
|
|
|
66
57
|
"./patterning": "./dist/patterning.js",
|
|
67
58
|
"./package.json": "./package.json"
|
|
68
59
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
},
|
|
60
|
+
"files": [
|
|
61
|
+
"./dist/**",
|
|
62
|
+
"./catalog-info.yaml",
|
|
63
|
+
"./CHANGELOG.md",
|
|
64
|
+
"./package.json",
|
|
65
|
+
"./README.md"
|
|
66
|
+
],
|
|
67
|
+
"keywords": [
|
|
68
|
+
"dev-tk",
|
|
69
|
+
"tooling"
|
|
70
|
+
],
|
|
71
|
+
"license": "Apache-2.0",
|
|
72
|
+
"main": "./dist/index.js",
|
|
73
|
+
"module": "./dist/index.js",
|
|
74
|
+
"owner": "default/pathfinder",
|
|
75
|
+
"private": false,
|
|
86
76
|
"publishConfig": {
|
|
87
77
|
"access": "public"
|
|
88
78
|
},
|
|
79
|
+
"repository": {
|
|
80
|
+
"type": "git",
|
|
81
|
+
"url": "https://github.com/gohypergiant/standard-toolkit"
|
|
82
|
+
},
|
|
89
83
|
"sideEffects": false,
|
|
84
|
+
"subPath": "packages/geo",
|
|
85
|
+
"title": "Accelint Geo",
|
|
86
|
+
"type": "module",
|
|
87
|
+
"types": "./dist/index.d.ts",
|
|
90
88
|
"scripts": {
|
|
91
89
|
"bench": "pnpm vitest bench --run --dir src",
|
|
92
90
|
"build": "pnpm tsdown",
|
|
93
|
-
"constellation-tracker": "constellation-tracker",
|
|
91
|
+
"constellation-tracker": "pnpm exec constellation-tracker",
|
|
94
92
|
"dev": "pnpm tsc --watch",
|
|
93
|
+
"format": "pnpm biome format . --write --verbose",
|
|
94
|
+
"format:check": "pnpm biome format . --verbose",
|
|
95
95
|
"index": "pnpm zx ../../scripts/indexer.mjs packages/geo",
|
|
96
|
-
"
|
|
96
|
+
"license": "pnpm zx ../../scripts/license.mjs",
|
|
97
|
+
"lint": "pnpm biome lint . --verbose",
|
|
97
98
|
"test": "pnpm vitest --dir=src"
|
|
98
99
|
}
|
|
99
100
|
}
|