@dwp/govuk-casa 8.2.2 → 8.2.3
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.
- package/CHANGELOG.md +2 -0
- package/dist/casa.d.ts +1 -1
- package/dist/casa.js +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [8.2.3](https://github.com/dwp/govuk-casa/compare/8.2.2...8.2.3) (2022-05-23)
|
|
6
|
+
|
|
5
7
|
### [8.2.2](https://github.com/dwp/govuk-casa/compare/8.2.1...8.2.2) (2022-05-23)
|
|
6
8
|
|
|
7
9
|
|
package/dist/casa.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ export type IPlugin = {
|
|
|
114
114
|
*/
|
|
115
115
|
bootstrap?: Function | undefined;
|
|
116
116
|
};
|
|
117
|
-
export type PluginConfigureFunction = (
|
|
117
|
+
export type PluginConfigureFunction = (config: object) => any;
|
|
118
118
|
export type HelmetConfigurator = (config: object) => object;
|
|
119
119
|
export type Mounter = (app: import('express').Express, opts: object, route?: string | undefined) => import('express').Express;
|
|
120
120
|
export type MutableRouter = import('./lib/index').MutableRouter;
|
package/dist/casa.js
CHANGED