hmpo-form-wizard 15.0.1 → 15.0.2

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.
Files changed (2) hide show
  1. package/example/app.js +1 -1
  2. package/package.json +1 -1
package/example/app.js CHANGED
@@ -23,7 +23,7 @@ app.use(hmpoLogger.middleware());
23
23
  // add routing for static assets
24
24
  app.use('/public', express.static(path.resolve(__dirname, 'public')));
25
25
  app.use('/public/images', express.static(path.resolve(__dirname, 'node_modules', 'hmpo-components', 'assets', 'images')));
26
- app.use('/public', express.static(path.resolve(__dirname, 'node_modules', 'govuk-frontend', 'dist', 'govuk', 'assets')));
26
+ app.use('/public', express.static(path.resolve(__dirname, 'node_modules', 'govuk-frontend', 'dist', 'govuk', 'assets', 'rebrand')));
27
27
 
28
28
 
29
29
  // cookies and sessions (redis or elasticache should be used in a prod env)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hmpo-form-wizard",
3
- "version": "15.0.1",
3
+ "version": "15.0.2",
4
4
  "description": "Routing and request handling for a multi-step form processes",
5
5
  "main": "index.js",
6
6
  "scripts": {