Merge branch 'master' into v2

# Conflicts:
#	.gitignore
#	.gitmodules
#	lerna.json
This commit is contained in:
xiaojunnuo
2022-10-20 23:13:58 +08:00
54 changed files with 1099 additions and 346 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@certd/api",
"version": "0.2.1",
"version": "0.3.0",
"description": "",
"type": "module",
"author": "Greper",
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@certd/certd",
"version": "0.2.1",
"version": "0.3.0",
"description": "a ssl cert keeper",
"main": "src/index.js",
"scripts": {
@@ -10,8 +10,8 @@
"author": "Greper",
"license": "MIT",
"dependencies": {
"@certd/acme-client": "^0.2.0",
"@certd/api": "^0.2.1",
"@certd/acme-client": "^0.3.0",
"@certd/api": "^0.3.0",
"dayjs": "^1.9.7",
"lodash-es": "^4.17.20",
"node-forge": "^0.10.0"
+3
View File
@@ -5,6 +5,9 @@ const logger = util.logger
export class AcmeService {
constructor (store) {
this.store = store
acme.setLogger((text) => {
logger.info(text)
})
}
async getAccountConfig (email) {
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@certd/executor",
"version": "0.2.2",
"version": "0.3.0",
"description": "",
"main": "src/index.js",
"scripts": {
@@ -10,15 +10,15 @@
},
"type": "module",
"dependencies": {
"@certd/api": "^0.2.1",
"@certd/certd": "^0.2.1",
"@certd/api": "^0.3.0",
"@certd/certd": "^0.3.0",
"dayjs": "^1.9.7",
"lodash-es": "^4.17.20"
},
"devDependencies": {
"@certd/plugin-aliyun": "^0.2.2",
"@certd/plugin-host": "^0.2.1",
"@certd/plugin-tencent": "^0.2.2",
"@certd/plugin-aliyun": "^0.3.0",
"@certd/plugin-host": "^0.3.0",
"@certd/plugin-tencent": "^0.3.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",