@accelint/geo 0.2.9 → 0.2.10

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 ADDED
@@ -0,0 +1,133 @@
1
+ # @accelint/geo
2
+
3
+ ## 0.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 64280a7: - Released `@accelint/constellation-tracker` - A tool that helps maintain catalog-info.yaml files for Constellation integration
8
+ - Ensures all packages include catalog-info.yaml in their published files for better discoverability and integration with Constellation
9
+ - Provides automated tracking and updating of component metadata across the project
10
+ - Enhanced package metadata to support better integration with internal tooling
11
+ - Updated dependencies [64280a7]
12
+ - @accelint/math@0.1.6
13
+ - @accelint/predicates@0.4.2
14
+
15
+ ## 0.2.9
16
+
17
+ ### Patch Changes
18
+
19
+ - 5206880: Linting fixes only.
20
+ - Updated dependencies [5206880]
21
+ - @accelint/predicates@0.4.1
22
+
23
+ ## 0.2.8
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [383c42a]
28
+ - @accelint/predicates@0.4.0
29
+
30
+ ## 0.2.7
31
+
32
+ ### Patch Changes
33
+
34
+ - @accelint/predicates@0.3.4
35
+
36
+ ## 0.2.6
37
+
38
+ ### Patch Changes
39
+
40
+ - 83104ea: Refactored ViewStack to be event driven, allowing for triggers anywhere in the app
41
+ - Updated dependencies [83104ea]
42
+ - @accelint/predicates@0.3.3
43
+ - @accelint/math@0.1.5
44
+
45
+ ## 0.2.5
46
+
47
+ ### Patch Changes
48
+
49
+ - Updated dependencies [ca3922a]
50
+ - @accelint/math@0.1.4
51
+ - @accelint/predicates@0.3.2
52
+
53
+ ## 0.2.4
54
+
55
+ ### Patch Changes
56
+
57
+ - Updated dependencies [938c74e]
58
+ - @accelint/predicates@0.3.1
59
+
60
+ ## 0.2.3
61
+
62
+ ### Patch Changes
63
+
64
+ - Updated dependencies [b77d30e]
65
+ - Updated dependencies [0fafa9f]
66
+ - @accelint/predicates@0.3.0
67
+
68
+ ## 0.2.2
69
+
70
+ ### Patch Changes
71
+
72
+ - @accelint/predicates@0.2.2
73
+
74
+ ## 0.2.1
75
+
76
+ ### Patch Changes
77
+
78
+ - @accelint/predicates@0.2.1
79
+
80
+ ## 0.2.0
81
+
82
+ ### Minor Changes
83
+
84
+ - 6c23f31: Add coordinate parsing capability; parse string into object with conversion
85
+ options: MGRS, UTM, and lat/lon DD, DDM, DMS. Some error messaging is included
86
+ to be helpful for users and debuggers.
87
+
88
+ ### Patch Changes
89
+
90
+ - Updated dependencies [4ceec7e]
91
+ - Updated dependencies [13f0d6c]
92
+ - @accelint/predicates@0.2.0
93
+
94
+ ## 0.1.3
95
+
96
+ ### Patch Changes
97
+
98
+ - f117ea6: Converted build step to use `tsup`.
99
+ - d39c5d8: Added explicit file extensions to relative path imports via esbuild plugin for tsup.
100
+ - Updated dependencies [f117ea6]
101
+ - Updated dependencies [d39c5d8]
102
+ - @accelint/converters@0.1.3
103
+ - @accelint/predicates@0.1.3
104
+
105
+ ## 0.1.2
106
+
107
+ ### Patch Changes
108
+
109
+ - 2c661d3: Standardized package.json "exports" field
110
+ - Updated dependencies [2c661d3]
111
+ - @accelint/converters@0.1.2
112
+ - @accelint/predicates@0.1.2
113
+
114
+ ## 0.1.1
115
+
116
+ ### Patch Changes
117
+
118
+ - 017c16e: Fixed publishing artifacts.
119
+ - Updated dependencies [017c16e]
120
+ - @accelint/converters@0.1.1
121
+ - @accelint/predicates@0.1.1
122
+
123
+ ## 0.1.0
124
+
125
+ ### Minor Changes
126
+
127
+ - eba7ce9: Initial release.
128
+
129
+ ### Patch Changes
130
+
131
+ - Updated dependencies [eba7ce9]
132
+ - @accelint/converters@0.1.0
133
+ - @accelint/predicates@0.1.0
@@ -0,0 +1,39 @@
1
+ ---
2
+ apiVersion: backstage.io/v1alpha1
3
+ kind: Component
4
+ metadata:
5
+ name: "@accelint/geo"
6
+ title: Accelint Geo
7
+ description: >-
8
+ A collection of JavaScript functions for working with coordinates and
9
+ geospatial data.
10
+
11
+
12
+ Dependencies:
13
+
14
+ @accelint/math@0.1.5, @accelint/predicates@0.4.0,
15
+ @accelint/constellation-tracker@0.0.0, @accelint/typescript-config@0.1.2,
16
+ @accelint/vitest-config@0.1.3
17
+ annotations:
18
+ backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/packages/geo/catalog-info.yaml
19
+ backstage.io/techdocs-ref: dir:.
20
+ package/version: 0.2.8
21
+ github.com/project-slug: gohypergiant/standard-toolkit
22
+ links:
23
+ - url: https://github.com/gohypergiant/standard-toolkit/tree/main/packages/geo
24
+ title: Documentation
25
+ icon: docs
26
+ type: documentation
27
+ tags:
28
+ - dev-tk
29
+ - tooling
30
+ spec:
31
+ type: library
32
+ lifecycle: production
33
+ owner: group:default/pathfinder
34
+ dependsOn:
35
+ - component:@accelint/math
36
+ - component:@accelint/predicates
37
+ - component:@accelint/constellation-tracker
38
+ - component:@accelint/typescript-config
39
+ - component:@accelint/vitest-config
package/package.json CHANGED
@@ -1,15 +1,27 @@
1
1
  {
2
2
  "name": "@accelint/geo",
3
- "version": "0.2.9",
3
+ "title": "Accelint Geo",
4
+ "version": "0.2.10",
4
5
  "private": false,
5
6
  "license": "Apache-2.0",
7
+ "keywords": [
8
+ "dev-tk",
9
+ "tooling"
10
+ ],
11
+ "description": "A collection of JavaScript functions for working with coordinates and geospatial data.",
6
12
  "repository": {
7
13
  "type": "git",
8
14
  "url": "https://github.com/gohypergiant/standard-toolkit"
9
15
  },
16
+ "owner": "default/pathfinder",
17
+ "subPath": "packages/geo",
10
18
  "type": "module",
11
19
  "files": [
12
- "dist/**"
20
+ "./dist/**",
21
+ "./catalog-info.yaml",
22
+ "./CHANGELOG.md",
23
+ "./package.json",
24
+ "./README.md"
13
25
  ],
14
26
  "types": "./dist/index.d.ts",
15
27
  "exports": {
@@ -26,15 +38,16 @@
26
38
  "esbuild-fix-imports-plugin": "1.0.21",
27
39
  "tsup": "8.5.0",
28
40
  "vitest": "2.1.3",
29
- "@accelint/typescript-config": "0.1.2",
30
- "@accelint/vitest-config": "0.1.3"
41
+ "@accelint/constellation-tracker": "1.0.0",
42
+ "@accelint/typescript-config": "0.1.3",
43
+ "@accelint/vitest-config": "0.1.4"
31
44
  },
32
45
  "dependencies": {
33
46
  "@ngageoint/grid-js": "2.1.0",
34
47
  "@ngageoint/mgrs-js": "1.0.0",
35
48
  "typescript": "^5.8.3",
36
- "@accelint/math": "0.1.5",
37
- "@accelint/predicates": "0.4.1"
49
+ "@accelint/math": "0.1.6",
50
+ "@accelint/predicates": "0.4.2"
38
51
  },
39
52
  "$schema": "https://json.schemastore.org/package",
40
53
  "author": "https://hypergiant.com",
@@ -45,6 +58,7 @@
45
58
  "scripts": {
46
59
  "bench": "pnpm vitest bench --run --dir src",
47
60
  "build": "pnpm tsup",
61
+ "constellation-tracker": "constellation-tracker",
48
62
  "dev": "pnpm tsc --watch",
49
63
  "index": "pnpm zx ../../scripts/indexer.mjs packages/geo",
50
64
  "lint": "pnpm biome lint",