@metric-im/administrate 1.1.0 → 1.1.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/.claude/settings.local.json +3 -6
- package/certify.mjs +2 -1
- package/package.json +2 -2
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"permissions": {
|
|
3
3
|
"allow": [
|
|
4
|
-
"Read(//home/msprague/workspace/
|
|
5
|
-
"Read(//home/msprague/workspace/rootz/
|
|
6
|
-
"Read(//home/msprague/workspace/rootz/epistery/**)",
|
|
7
|
-
"Read(//home/msprague/workspace/rootz/rhonda/node_modules/epistery/**)",
|
|
8
|
-
"Read(//home/msprague/workspace/rootz/rhonda/**)"
|
|
4
|
+
"Read(//home/msprague/workspace/sitewell/**)",
|
|
5
|
+
"Read(//home/msprague/workspace/rootz/data-wallet-demos/**)"
|
|
9
6
|
],
|
|
10
7
|
"deny": [],
|
|
11
8
|
"ask": []
|
|
12
9
|
}
|
|
13
|
-
}
|
|
10
|
+
}
|
package/certify.mjs
CHANGED
|
@@ -17,11 +17,12 @@ export class Certify {
|
|
|
17
17
|
}
|
|
18
18
|
static async attach(app,options) {
|
|
19
19
|
const instance = new Certify(app,options);
|
|
20
|
-
instance.config = new Config();
|
|
20
|
+
instance.config = new Config();
|
|
21
21
|
|
|
22
22
|
// Load root config to get contact email
|
|
23
23
|
instance.config.setPath('/');
|
|
24
24
|
instance.config.load();
|
|
25
|
+
|
|
25
26
|
instance.contactEmail = instance.options.contactEmail || instance.config.data.ssl?.email || instance.config.data.profile?.email;
|
|
26
27
|
|
|
27
28
|
instance.acme = new Acme.Client({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metric-im/administrate",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Tools for site administration",
|
|
5
5
|
"homepage": "https://github.com/metric-im/administrate#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"moment": "^2.30.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"epistery": "^1.0.
|
|
28
|
+
"epistery": "^1.0.3"
|
|
29
29
|
}
|
|
30
30
|
}
|