@sequencemedia/certificates 1.0.755 → 1.0.756

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.
Files changed (3) hide show
  1. package/ca-and-certs.mjs +14 -14
  2. package/certs.mjs +14 -14
  3. package/package.json +4 -4
package/ca-and-certs.mjs CHANGED
@@ -73,21 +73,21 @@ async function app () {
73
73
 
74
74
  return (PLATFORM === 'win32')
75
75
  ? await bat({
76
- country,
77
- state,
78
- locality,
79
- organisation,
80
- commonName,
81
- emailAddress
82
- })
76
+ country,
77
+ state,
78
+ locality,
79
+ organisation,
80
+ commonName,
81
+ emailAddress
82
+ })
83
83
  : await sh({
84
- country,
85
- state,
86
- locality,
87
- organisation,
88
- commonName,
89
- emailAddress
90
- })
84
+ country,
85
+ state,
86
+ locality,
87
+ organisation,
88
+ commonName,
89
+ emailAddress
90
+ })
91
91
  } catch ({
92
92
  code = 'N/A',
93
93
  message = 'N/A'
package/certs.mjs CHANGED
@@ -73,21 +73,21 @@ async function app () {
73
73
 
74
74
  return (PLATFORM === 'win32')
75
75
  ? await bat({
76
- country,
77
- state,
78
- locality,
79
- organisation,
80
- commonName,
81
- emailAddress
82
- })
76
+ country,
77
+ state,
78
+ locality,
79
+ organisation,
80
+ commonName,
81
+ emailAddress
82
+ })
83
83
  : await sh({
84
- country,
85
- state,
86
- locality,
87
- organisation,
88
- commonName,
89
- emailAddress
90
- })
84
+ country,
85
+ state,
86
+ locality,
87
+ organisation,
88
+ commonName,
89
+ emailAddress
90
+ })
91
91
  } catch ({
92
92
  code = 'N/A',
93
93
  message = 'N/A'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencemedia/certificates",
3
- "version": "1.0.755",
3
+ "version": "1.0.756",
4
4
  "description": "Generate root CA and self-signed certificates with OpenSSL",
5
5
  "type": "module",
6
6
  "author": {
@@ -31,9 +31,9 @@
31
31
  "nconf": "^0.13.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@sequencemedia/eslint-config-standard": "^0.2.61",
35
- "eslint": "^9.27.0",
36
- "globals": "^16.1.0",
34
+ "@sequencemedia/eslint-config-standard": "^0.2.64",
35
+ "eslint": "^9.29.0",
36
+ "globals": "^16.2.0",
37
37
  "husky": "^9.1.7"
38
38
  }
39
39
  }