Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
a7525184ef | |||
ae9865749a | |||
b2482b3cfd | |||
41988da3ed | |||
55d450be69 | |||
ae2ade8680 |
0
dist/cert.hook.js
vendored
Executable file → Normal file
0
dist/cert.hook.js
vendored
Executable file → Normal file
15
dist/index.d.ts
vendored
15
dist/index.d.ts
vendored
@ -1,5 +1,12 @@
|
||||
/// <reference types="q" />
|
||||
import * as plugins from "./cert.plugins";
|
||||
export interface CertConstructorOptions {
|
||||
cfEmail: string;
|
||||
cfKey: string;
|
||||
sslDir: string;
|
||||
gitOriginRepo?: string;
|
||||
testMode?: boolean;
|
||||
}
|
||||
export declare class Cert {
|
||||
private _cfEmail;
|
||||
private _cfKey;
|
||||
@ -8,13 +15,7 @@ export declare class Cert {
|
||||
private _testMode;
|
||||
certificatesPresent: Certificate[];
|
||||
certificatesValid: Certificate[];
|
||||
constructor(optionsArg: {
|
||||
cfEmail: string;
|
||||
cfKey: string;
|
||||
sslDir: string;
|
||||
gitOriginRepo?: string;
|
||||
testMode?: boolean;
|
||||
});
|
||||
constructor(optionsArg: CertConstructorOptions);
|
||||
sslGitOriginPull: () => void;
|
||||
sslGitOriginAddCommitPush: () => void;
|
||||
getDomainCert(domainNameArg: string, optionsArg?: {
|
||||
|
3
dist/index.js
vendored
3
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cert",
|
||||
"version": "0.0.12",
|
||||
"version": "0.0.15",
|
||||
"description": "Easily obain SSL certificates from LetsEncrypt. Supports DNS-01 challenge. TypeScript ready.",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
@ -27,9 +27,9 @@
|
||||
},
|
||||
"homepage": "https://gitlab.com/pushrocks/cert#readme",
|
||||
"dependencies": {
|
||||
"@types/minimatch": "^2.0.26-alpha",
|
||||
"@types/q": "0.0.25-alpha",
|
||||
"@types/shelljs": "^0.3.25-alpha",
|
||||
"@types/minimatch": "*",
|
||||
"@types/q": "*",
|
||||
"@types/shelljs": "*",
|
||||
"beautylog": "^5.0.13",
|
||||
"cflare": "0.0.9",
|
||||
"fs-extra": "^0.30.0",
|
||||
|
@ -30,7 +30,7 @@ describe("cert", function () {
|
||||
});
|
||||
it("should get a valid certificate", function (done) {
|
||||
this.timeout(120000);
|
||||
testCert.getDomainCert("hello1.bleu.de").then(function () {
|
||||
testCert.getDomainCert("hello2.bleu.de").then(function () {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
@ -34,7 +34,7 @@ describe("cert",function(){
|
||||
})
|
||||
it("should get a valid certificate",function(done){
|
||||
this.timeout(120000);
|
||||
testCert.getDomainCert("hello1.bleu.de").then(() => {
|
||||
testCert.getDomainCert("hello2.bleu.de").then(() => {
|
||||
done();
|
||||
});
|
||||
})
|
||||
|
16
ts/index.ts
16
ts/index.ts
@ -1,6 +1,14 @@
|
||||
import * as plugins from "./cert.plugins";
|
||||
import * as paths from "./cert.paths";
|
||||
|
||||
export interface CertConstructorOptions {
|
||||
cfEmail: string,
|
||||
cfKey: string,
|
||||
sslDir: string,
|
||||
gitOriginRepo?: string,
|
||||
testMode?: boolean
|
||||
};
|
||||
|
||||
export class Cert {
|
||||
private _cfEmail: string;
|
||||
private _cfKey: string;
|
||||
@ -9,13 +17,7 @@ export class Cert {
|
||||
private _testMode: boolean
|
||||
certificatesPresent: Certificate[];
|
||||
certificatesValid: Certificate[];
|
||||
constructor(optionsArg: {
|
||||
cfEmail: string,
|
||||
cfKey: string,
|
||||
sslDir: string,
|
||||
gitOriginRepo?: string,
|
||||
testMode?: boolean
|
||||
}) {
|
||||
constructor(optionsArg:CertConstructorOptions) {
|
||||
this._cfEmail = optionsArg.cfEmail;
|
||||
this._cfKey = optionsArg.cfKey;
|
||||
this._sslDir = optionsArg.sslDir;
|
||||
|
Reference in New Issue
Block a user