@tak-ps/node-tak 11.18.0 → 11.18.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/.github/workflows/release.yml +10 -13
- package/CHANGELOG.md +8 -0
- package/package.json +3 -3
|
@@ -5,20 +5,22 @@ on:
|
|
|
5
5
|
tags:
|
|
6
6
|
- '*'
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
8
12
|
jobs:
|
|
9
13
|
build:
|
|
10
14
|
runs-on: ubuntu-latest
|
|
11
15
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
13
|
-
|
|
14
|
-
- name: Get tag
|
|
15
|
-
id: tag
|
|
16
|
-
uses: dawidd6/action-get-tag@v1
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
17
|
|
|
18
|
-
- uses: actions/setup-node@
|
|
18
|
+
- uses: actions/setup-node@v6
|
|
19
19
|
with:
|
|
20
20
|
node-version: 22
|
|
21
|
-
|
|
21
|
+
|
|
22
|
+
- name: Update npm
|
|
23
|
+
run: npm install -g npm@latest
|
|
22
24
|
|
|
23
25
|
- name: npm install
|
|
24
26
|
run: npm install
|
|
@@ -27,9 +29,4 @@ jobs:
|
|
|
27
29
|
run: npm run build
|
|
28
30
|
|
|
29
31
|
- name: npm publish
|
|
30
|
-
run: npm publish
|
|
31
|
-
env:
|
|
32
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
33
|
-
|
|
34
|
-
- name: Github Release
|
|
35
|
-
uses: softprops/action-gh-release@v2
|
|
32
|
+
run: npm publish --provenance --access public
|
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v11.18.2 - 2025-12-16
|
|
14
|
+
|
|
15
|
+
- :rocket: Add Build Step
|
|
16
|
+
|
|
17
|
+
### v11.18.1 - 2025-12-15
|
|
18
|
+
|
|
19
|
+
- :rocket: Update Release Process
|
|
20
|
+
|
|
13
21
|
### v11.18.0 - 2025-12-04
|
|
14
22
|
|
|
15
23
|
- :rocket: Update Mission type to require description
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/node-tak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "11.18.
|
|
4
|
+
"version": "11.18.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",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@inquirer/prompts": "^8.0.1",
|
|
46
46
|
"@types/minimist": "^1.2.5",
|
|
47
|
-
"@types/node": "^
|
|
47
|
+
"@types/node": "^25.0.0",
|
|
48
48
|
"@types/pem": "^1.14.4",
|
|
49
49
|
"@types/tape": "^5.6.0",
|
|
50
50
|
"c8": "^10.1.3",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
|
61
|
-
"url": "
|
|
61
|
+
"url": "https://github.com/dfpc-coe/node-tak"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"tak",
|