Skip to content

Commit

Permalink
chore(deps): add express dep
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHirn committed Sep 25, 2020
1 parent 8e2267e commit 9c862cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 35 deletions.
31 changes: 3 additions & 28 deletions etc/server.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,32 +121,6 @@
},
"isStatic": false
},
{
"kind": "Property",
"canonicalReference": "@authless/server!Server#logger:member",
"docComment": "",
"excerptTokens": [
{
"kind": "Content",
"text": "logger: "
},
{
"kind": "Content",
"text": "any"
},
{
"kind": "Content",
"text": ";"
}
],
"releaseTag": "Beta",
"name": "logger",
"propertyTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
},
"isStatic": false
},
{
"kind": "Property",
"canonicalReference": "@authless/server!Server#proxy:member",
Expand Down Expand Up @@ -250,8 +224,9 @@
"text": "run(): "
},
{
"kind": "Content",
"text": "void"
"kind": "Reference",
"text": "http.Server",
"canonicalReference": "!\"\\\"http\\\"\".Server:class"
},
{
"kind": "Content",
Expand Down
5 changes: 2 additions & 3 deletions etc/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
```ts

import * as authless from '@authless/core';
import * as http from 'http';
import { PuppeteerExtraPlugin } from 'puppeteer-extra';

// @beta
Expand All @@ -16,15 +17,13 @@ export class Server {
// (undocumented)
domainPathRouter: authless.DomainPathRouter;
// (undocumented)
logger: any;
// (undocumented)
proxy?: authless.ProxyConfig;
// (undocumented)
puppeteerParams?: authless.PuppeteerParams;
// (undocumented)
puppeteerPlugins?: PuppeteerExtraPlugin[];
// (undocumented)
run(): void;
run(): http.Server;
}


Expand Down
5 changes: 2 additions & 3 deletions etc/tmp/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
```ts

import * as authless from '@authless/core';
import * as http from 'http';
import { PuppeteerExtraPlugin } from 'puppeteer-extra';

// @beta
Expand All @@ -16,15 +17,13 @@ export class Server {
// (undocumented)
domainPathRouter: authless.DomainPathRouter;
// (undocumented)
logger: any;
// (undocumented)
proxy?: authless.ProxyConfig;
// (undocumented)
puppeteerParams?: authless.PuppeteerParams;
// (undocumented)
puppeteerPlugins?: PuppeteerExtraPlugin[];
// (undocumented)
run(): void;
run(): http.Server;
}


Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
"author": "",
"dependencies": {
"@authless/core": "^1.4.0",
"@types/express": "^4.17.8",
"axios": "^0.19.0",
"debug": "^4.1.1"
"debug": "^4.1.1",
"express": "^4.17.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
Expand Down

0 comments on commit 9c862cd

Please sign in to comment.