@bobfrankston/miscassists 1.0.50 → 1.0.52
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/index.d.ts +7 -3
- package/index.js +6 -3
- package/miscassists.code-workspace +16 -0
- package/package.json +10 -4
- package/.claude/settings.local.json +0 -10
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
|
|
2
|
-
import { ports, mqtt } from '@bobfrankston/miscinfo';
|
|
2
|
+
import { ports, mqtt, endsWithFQDN } from '@bobfrankston/miscinfo';
|
|
3
3
|
import { makerPayload } from './maker.js';
|
|
4
|
-
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, makerPayload };
|
|
4
|
+
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, makerPayload, endsWithFQDN };
|
|
5
5
|
export declare const values: {
|
|
6
6
|
exitRunit: number;
|
|
7
7
|
};
|
|
@@ -16,6 +16,7 @@ declare const _default: {
|
|
|
16
16
|
jserve2s: number;
|
|
17
17
|
devlisten: number;
|
|
18
18
|
halisten: number;
|
|
19
|
+
haport: number;
|
|
19
20
|
rmfsite: number;
|
|
20
21
|
rmfsites: number;
|
|
21
22
|
rmfprod: number;
|
|
@@ -40,7 +41,6 @@ declare const _default: {
|
|
|
40
41
|
backts: number;
|
|
41
42
|
backserve: number;
|
|
42
43
|
syncer: number;
|
|
43
|
-
lifxer: number;
|
|
44
44
|
itemw: number;
|
|
45
45
|
pinst: number;
|
|
46
46
|
stephanie: number;
|
|
@@ -50,6 +50,9 @@ declare const _default: {
|
|
|
50
50
|
rmfAlpha2: number;
|
|
51
51
|
carder: number;
|
|
52
52
|
cardaid: number;
|
|
53
|
+
oauth: number;
|
|
54
|
+
alerter: number;
|
|
55
|
+
mailx: number;
|
|
53
56
|
};
|
|
54
57
|
mqtt: {
|
|
55
58
|
host: string;
|
|
@@ -69,5 +72,6 @@ declare const _default: {
|
|
|
69
72
|
values: {
|
|
70
73
|
exitRunit: number;
|
|
71
74
|
};
|
|
75
|
+
endsWithFQDN: typeof endsWithFQDN;
|
|
72
76
|
};
|
|
73
77
|
export default _default;
|
package/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
|
|
2
|
-
import { ports, mqtt } from '@bobfrankston/miscinfo';
|
|
2
|
+
import { ports, mqtt, endsWithFQDN } from '@bobfrankston/miscinfo';
|
|
3
3
|
// import { jSubSiteInfo, jpriv, jprivs } from './jserve.js';
|
|
4
|
-
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt
|
|
4
|
+
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, endsWithFQDN
|
|
5
|
+
// , jSubSiteInfo, jpriv, jprivs
|
|
6
|
+
};
|
|
5
7
|
export const values = {
|
|
6
8
|
exitRunit: 99,
|
|
7
9
|
};
|
|
@@ -14,6 +16,7 @@ export default {
|
|
|
14
16
|
ports,
|
|
15
17
|
mqtt,
|
|
16
18
|
// jprivs,
|
|
17
|
-
values
|
|
19
|
+
values,
|
|
20
|
+
endsWithFQDN
|
|
18
21
|
};
|
|
19
22
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/miscassists",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "Miscelleanous assists for various tasks including defining port numbers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "main.js",
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"prerelease:local": "git add -A && (git diff-index --quiet HEAD || git commit -m \"Pre-release commit\")",
|
|
11
11
|
"preversion": "npm run build && git add -A",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
12
|
+
"release": "npm run prerelease:local && npm version patch && npm publish",
|
|
13
|
+
"postversion": "git push && git push --tags"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [],
|
|
16
16
|
"author": "",
|
|
17
17
|
"license": "ISC",
|
|
18
18
|
"type": "module",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@bobfrankston/miscinfo": "^1.0.
|
|
20
|
+
"@bobfrankston/miscinfo": "^1.0.8",
|
|
21
21
|
"esm": "^3.2.25"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
@@ -33,5 +33,11 @@
|
|
|
33
33
|
".dependencies": {
|
|
34
34
|
"@bobfrankston/miscinfo": "file:../../npm/miscinfo",
|
|
35
35
|
"esm": "^3.2.25"
|
|
36
|
+
},
|
|
37
|
+
".transformedSnapshot": {
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@bobfrankston/miscinfo": "^1.0.8",
|
|
40
|
+
"esm": "^3.2.25"
|
|
41
|
+
}
|
|
36
42
|
}
|
|
37
43
|
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(git init:*)",
|
|
5
|
-
"Bash(npx tsc:*)",
|
|
6
|
-
"Bash(del \"y:\\\\dev\\\\projects\\\\NodeJS\\\\miscassists\\\\ports.ts\" \"y:\\\\dev\\\\projects\\\\NodeJS\\\\miscassists\\\\ports.js\" \"y:\\\\dev\\\\projects\\\\NodeJS\\\\miscassists\\\\ports.d.ts\" \"y:\\\\dev\\\\projects\\\\NodeJS\\\\miscassists\\\\ports.js.map\")",
|
|
7
|
-
"Bash(npm install)"
|
|
8
|
-
]
|
|
9
|
-
}
|
|
10
|
-
}
|