@financial-times/n-conversion-forms 27.6.0 → 27.6.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.
- package/.circleci/config.yml +6 -12
- package/build-state/npm-shrinkwrap.json +1280 -768
- package/components/__snapshots__/company-name.spec.js.snap +5 -0
- package/components/company-name.jsx +3 -0
- package/dist/company-name.js +7 -3
- package/package.json +3 -3
- package/utils/delivery-option-messages.js +21 -3
- package/utils/delivery-option-messages.spec.js +1 -1
package/.circleci/config.yml
CHANGED
|
@@ -3,16 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
references:
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
container_config_node: &container_config_node
|
|
7
7
|
working_directory: ~/project/build
|
|
8
8
|
docker:
|
|
9
|
-
- image: cimg/node:
|
|
10
|
-
|
|
11
|
-
container_config_lambda_node12: &container_config_lambda_node12
|
|
12
|
-
working_directory: ~/project/build
|
|
13
|
-
docker:
|
|
14
|
-
- image: lambci/lambda:build-nodejs12.x
|
|
15
|
-
|
|
9
|
+
- image: cimg/node:16.17-browsers
|
|
16
10
|
workspace_root: &workspace_root
|
|
17
11
|
~/project
|
|
18
12
|
|
|
@@ -65,7 +59,7 @@ orbs:
|
|
|
65
59
|
jobs:
|
|
66
60
|
|
|
67
61
|
build:
|
|
68
|
-
<<: *
|
|
62
|
+
<<: *container_config_node
|
|
69
63
|
steps:
|
|
70
64
|
- checkout
|
|
71
65
|
- run:
|
|
@@ -73,7 +67,7 @@ jobs:
|
|
|
73
67
|
command: git clone --depth 1 git@github.com:Financial-Times/next-ci-shared-helpers.git .circleci/shared-helpers
|
|
74
68
|
- *restore_npm_cache
|
|
75
69
|
- node/install-npm:
|
|
76
|
-
version: "7"
|
|
70
|
+
version: "^7"
|
|
77
71
|
- run:
|
|
78
72
|
name: Install project dependencies
|
|
79
73
|
command: make install
|
|
@@ -94,7 +88,7 @@ jobs:
|
|
|
94
88
|
- build
|
|
95
89
|
|
|
96
90
|
test:
|
|
97
|
-
<<: *
|
|
91
|
+
<<: *container_config_node
|
|
98
92
|
steps:
|
|
99
93
|
- *attach_workspace
|
|
100
94
|
- run:
|
|
@@ -110,7 +104,7 @@ jobs:
|
|
|
110
104
|
destination: test-results
|
|
111
105
|
|
|
112
106
|
publish:
|
|
113
|
-
<<: *
|
|
107
|
+
<<: *container_config_node
|
|
114
108
|
steps:
|
|
115
109
|
- *attach_workspace
|
|
116
110
|
- run:
|