@tak-ps/node-tak 0.2.0 → 0.3.1

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 CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v0.3.1
14
+
15
+ - :bug: Bump Build
16
+
17
+ ### v0.3.0
18
+
19
+ - :bug: Properly encode Polygons in Node-COT
20
+
13
21
  ### v0.2.0
14
22
 
15
23
  - :bug: Fix Lint Errors
@@ -0,0 +1,8 @@
1
+ import TAK, { CoT } from '../index.js';
2
+ import test from 'tape';
3
+ test('Ensure Export', (t) => {
4
+ t.ok(TAK);
5
+ t.ok(CoT);
6
+ t.end();
7
+ });
8
+ //# sourceMappingURL=default.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"default.test.js","sourceRoot":"","sources":["../../test/default.test.ts"],"names":[],"mappings":"AAAA,OAAO,GAAG,EAAE,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC,EAAE,EAAE;IACxB,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IACV,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IACV,CAAC,CAAC,GAAG,EAAE,CAAC;AACZ,CAAC,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-tak",
3
3
  "type": "module",
4
- "version": "0.2.0",
4
+ "version": "0.3.1",
5
5
  "description": "Lightweight JavaScript library for communicating with TAK Server",
6
6
  "author": "Nick Ingalls <nick@ingalls.ca>",
7
7
  "main": "dist/index.js",
@@ -14,7 +14,7 @@
14
14
  "pretest": "npm run lint"
15
15
  },
16
16
  "dependencies": {
17
- "@tak-ps/node-cot": "^4.1.2",
17
+ "@tak-ps/node-cot": "^4.2.0",
18
18
  "ajv": "^8.12.0"
19
19
  },
20
20
  "devDependencies": {