@tak-ps/node-tak 2.1.0 → 2.1.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.
@@ -30,3 +30,6 @@ jobs:
30
30
  run: npm publish
31
31
  env:
32
32
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33
+
34
+ - name: Github Release
35
+ uses: softprops/action-gh-release@v2
package/CHANGELOG.md CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v2.1.2
14
+
15
+ - :rocket: Add automatic GH Release
16
+
17
+ ### v2.1.1
18
+
19
+ - :arrow_up: Move ts-eslint to dev deps
20
+
13
21
  ### v2.1.0
14
22
 
15
23
  - :arrow_up: Update to ESLint Flat Config System
@@ -0,0 +1,12 @@
1
+ import eslint from '@eslint/js';
2
+ import tseslint from 'typescript-eslint';
3
+
4
+ export default tseslint.config(
5
+ eslint.configs.recommended,
6
+ ...tseslint.configs.recommended,
7
+ {
8
+ "rules": {
9
+ "@typescript-eslint/no-explicit-any": "warn"
10
+ }
11
+ }
12
+ );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-tak",
3
3
  "type": "module",
4
- "version": "2.1.0",
4
+ "version": "2.1.2",
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,8 +14,7 @@
14
14
  "pretest": "npm run lint"
15
15
  },
16
16
  "dependencies": {
17
- "ajv": "^8.12.0",
18
- "typescript-eslint": "^7.6.0"
17
+ "ajv": "^8.12.0"
19
18
  },
20
19
  "peerDependencies": {
21
20
  "@tak-ps/node-cot": "^6.1.0"
@@ -28,7 +27,8 @@
28
27
  "ts-node": "^10.9.1",
29
28
  "ts-node-test": "^0.4.0",
30
29
  "typedoc": "^0.25.0",
31
- "typescript": "^5.3.0"
30
+ "typescript": "^5.3.0",
31
+ "typescript-eslint": "^7.6.0"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",