Skip to content

Commit

Permalink
chore: add express-middleware as a new package
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondfeng committed Mar 7, 2019
1 parent e9cc630 commit 2beb2a0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ packages/http-server/* @hacksparrow @bajtos
packages/cli/* @raymondfeng @bajtos
packages/context/* @bajtos @raymondfeng
packages/core/* @bajtos @raymondfeng
packages/express-middleware/* @raymondfeng
packages/metadata/* @raymondfeng
packages/openapi-spec-builder/* @bajtos @raymondfeng
packages/openapi-v3/* @bajtos @jannyHou
Expand Down
1 change: 1 addition & 0 deletions docs/apidocs.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ <h3>List of packages</h3>
<li><a href="./core.html">@loopback/core</a></li>
<li><a href="./http-caching-proxy.html">@loopback/http-caching-proxy</a></li>
<li><a href="./http-server.html">@loopback/http-server</a></li>
<li><a href="./express-middleware.html">@loopback/express-middleware</a></li>
<li><a href="./metadata.html">@loopback/metadata</a></li>
<li><a href="./openapi-spec-builder.html">@loopback/openapi-spec-builder</a></li>
<li><a href="./openapi-v3-types.html">@loopback/openapi-v3-types</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/site/DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ Please register the new package in the following files:
new package, please keep the rows sorted by package name.
- Update [docs/apidocs.html](../apidocs.html) - add a link to API docs for this
new package.
- Update [Reserved-binding-keys.md](./Reserved-binding-keys.mds) - add a link to
- Update [Reserved-binding-keys.md](./Reserved-binding-keys.md) - add a link to
the apidocs on Binding Keys if the new package has any.
- Update [CODEOWNERS](../../CODEOWNERS) - add a new entry listing the primary
maintainers (owners) of the new package.
Expand Down
1 change: 1 addition & 0 deletions docs/site/MONOREPO.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The [loopback-next](https://github.com/strongloop/loopback-next) repository uses
| [example-todo-list](../../examples/todo-list) | _(private)_ | Continuation of the todo example using relations in LoopBack 4 |
| [http-caching-proxy](../../packages/http-caching-proxy) | @loopback/http-caching-proxy | A caching HTTP proxy for integration tests. NOT SUITABLE FOR PRODUCTION USE! |
| [http-server](../../packages/http-server) | @loopback/http-server | A wrapper for creating HTTP/HTTPS servers |
| [express-middleware](../../packages/express-middleware) | @loopback/express-middleware | Extensions to manage Express middleware |
| [metadata](../../packages/metadata) | @loopback/metadata | Utilities to help developers implement TypeScript decorators, define/merge metadata, and inspect metadata |
| [openapi-spec-builder](../../packages/openapi-spec-builder) | @loopback/openapi-spec-builder | Builders to create OpenAPI (Swagger) specification documents in tests |
| [openapi-v3](../../packages/openapi-v3) | @loopback/openapi-v3 | Decorators that annotate LoopBack artifacts with OpenAPI v3 metadata and utilities that transform LoopBack metadata to OpenAPI v3 specifications |
Expand Down
1 change: 1 addition & 0 deletions docs/site/Reserved-binding-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ the prefix. Example: `@loopback/authentication` component uses the prefix
- [RestBindings](http://apidocs.loopback.io/@loopback%2fdocs/rest.html#RestBindings)
- [RestBindings.Http](http://apidocs.loopback.io/@loopback%2fdocs/rest.html#Http)
- [RestBindings.SequenceActions](http://apidocs.loopback.io/@loopback%2fdocs/rest.html#SequenceActions)
- [ExpressBindings](http://apidocs.loopback.io/@loopback%2fdocs/express-middleware.html#ExpressBindings)
3 changes: 3 additions & 0 deletions packages/express-middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
"src",
"!*/__tests__"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
Expand Down

0 comments on commit 2beb2a0

Please sign in to comment.