hof 20.3.4-beta-testing-request → 20.3.4-redis-beta
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/.nyc_output/9651d42a-59d8-48e6-949c-655d9fa6db21.json +1 -0
- package/.nyc_output/processinfo/{4fc007c9-d6c8-4614-89ce-04c7d6ce9fe5.json → 9651d42a-59d8-48e6-949c-655d9fa6db21.json} +1 -1
- package/.nyc_output/processinfo/index.json +1 -1
- package/config/hof-defaults.js +13 -3
- package/frontend/govuk-template/build/govuk_template.html +0 -3
- package/frontend/govuk-template/govuk_template_generated.html +100 -0
- package/frontend/template-mixins/partials/forms/checkbox-group.html +1 -1
- package/frontend/template-partials/views/layout.html +1 -1
- package/frontend/template-partials/views/partials/cookie-banner.html +2 -2
- package/frontend/template-partials/views/partials/head.html +5 -10
- package/lib/ga-tag.js +22 -13
- package/lib/health.js +1 -1
- package/lib/sessions.js +2 -0
- package/middleware/rate-limiter.js +3 -1
- package/model/index.js +0 -28
- package/package.json +2 -2
- package/sandbox/apps/sandbox/fields.js +7 -0
- package/sandbox/apps/sandbox/translations/en/default.json +28 -32
- package/sandbox/apps/sandbox/translations/src/en/fields.json +6 -6
- package/sandbox/apps/sandbox/translations/src/en/pages.json +1 -1
- package/sandbox/config.js +2 -1
- package/sandbox/public/css/app.css +6604 -10
- package/sandbox/public/js/bundle.js +2800 -24
- package/sandbox/server.js +4 -1
- package/sandbox/yarn.lock +3 -3
- package/.nyc_output/4fc007c9-d6c8-4614-89ce-04c7d6ce9fe5.json +0 -1
package/sandbox/server.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
/* eslint-disable */
|
2
2
|
'use strict';
|
3
3
|
|
4
|
+
const config = require('./config');
|
4
5
|
const bootstrap = require('../');
|
5
6
|
|
6
7
|
bootstrap({
|
@@ -14,5 +15,7 @@ bootstrap({
|
|
14
15
|
}
|
15
16
|
},
|
16
17
|
getAccessibility: true,
|
17
|
-
"port":
|
18
|
+
"port": config.port
|
18
19
|
});
|
20
|
+
|
21
|
+
console.log(`Running on port ${config.port}`);
|
package/sandbox/yarn.lock
CHANGED
@@ -202,9 +202,9 @@ sass@^1.53.0:
|
|
202
202
|
source-map-js ">=0.6.2 <2.0.0"
|
203
203
|
|
204
204
|
semver@^5.7.1:
|
205
|
-
version "5.7.
|
206
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.
|
207
|
-
integrity sha512-
|
205
|
+
version "5.7.1"
|
206
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
207
|
+
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
208
208
|
|
209
209
|
semver@~7.0.0:
|
210
210
|
version "7.0.0"
|