@@ -46,7 +46,8 @@ commands:
46
46
steps :
47
47
- checkout
48
48
- restore_cache :
49
- keys : gulp-minify-inline-json-dependencies-{{ checksum "package-lock.json" }}
49
+ keys :
50
+ - gulp-minify-inline-json-dependencies-{{ checksum "package-lock.json" }}
50
51
- run :
51
52
name : install dependencies
52
53
command : npm i
@@ -70,19 +71,6 @@ commands:
70
71
mkdir /tmp/<< parameters.project_name >>
71
72
cd /tmp/<< parameters.project_name >> && npm init -y && echo "Created package.json" && cat package.json
72
73
73
- package-information :
74
- steps :
75
- - run :
76
- name : install tree
77
- command : sudo apt-get -y install tree
78
- - run :
79
- name : gather bundle information
80
- command : |
81
- npm info gulp-minify-inline-json@${VERSION} > ./bundle.info
82
- tree -s node_modules/gulp-minify-inline-json >> ./bundle.info
83
- - store_artifacts :
84
- path : bundle.info
85
-
86
74
workflows :
87
75
version : 2
88
76
default :
@@ -117,7 +105,7 @@ workflows:
117
105
jobs :
118
106
lint :
119
107
docker :
120
- - image : circleci /node:lts
108
+ - image : cimg /node:lts
121
109
working_directory : ~/gulp-minify-inline-json
122
110
steps :
123
111
- init
@@ -133,7 +121,7 @@ jobs:
133
121
134
122
test :
135
123
docker :
136
- - image : circleci /node:lts
124
+ - image : cimg /node:lts
137
125
working_directory : ~/gulp-minify-inline-json
138
126
steps :
139
127
- init
@@ -146,7 +134,7 @@ jobs:
146
134
147
135
bundle :
148
136
docker :
149
- - image : circleci /node:lts
137
+ - image : cimg /node:lts
150
138
working_directory : ~/gulp-minify-inline-json
151
139
steps :
152
140
- init
@@ -175,7 +163,7 @@ jobs:
175
163
176
164
bundle-test :
177
165
docker :
178
- - image : circleci /node:lts
166
+ - image : cimg /node:lts
179
167
steps :
180
168
- init
181
169
- attach_workspace :
@@ -195,7 +183,7 @@ jobs:
195
183
196
184
ensure-versioned-correctly :
197
185
docker :
198
- - image : circleci /node:lts
186
+ - image : cimg /node:lts
199
187
working_directory : ~/gulp-minify-inline-json
200
188
steps :
201
189
- init
@@ -226,7 +214,7 @@ jobs:
226
214
227
215
publish :
228
216
docker :
229
- - image : circleci /node:lts
217
+ - image : cimg /node:lts
230
218
working_directory : ~/gulp-minify-inline-json
231
219
steps :
232
220
- init
@@ -241,7 +229,7 @@ jobs:
241
229
242
230
package-test :
243
231
docker :
244
- - image : circleci /node:lts
232
+ - image : cimg /node:lts
245
233
steps :
246
234
- init
247
235
- create-test-project
@@ -255,7 +243,6 @@ jobs:
255
243
working_directory : /tmp/test-app
256
244
command : |
257
245
node -e "const gulpMinifyInlineJson = require('gulp-minify-inline-json'); const assert = require('assert').strict; assert.deepEqual(typeof gulpMinifyInlineJson, 'function');"
258
- - package-information
259
246
260
247
publish-github-release :
261
248
docker :
0 commit comments