pagean 6.0.0 → 6.0.1

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.
@@ -40,6 +40,11 @@
40
40
  font-size: 1rem;
41
41
  }
42
42
 
43
+ .pre {
44
+ font-family: monospace;
45
+ white-space: pre-wrap;
46
+ }
47
+
43
48
  .project,
44
49
  .started {
45
50
  margin: 0;
@@ -149,13 +154,13 @@
149
154
  }
150
155
 
151
156
  .test .data li:hover {
152
- background-color: rgba(255 255 255 10%);
157
+ background-color: rgba(255 255 255 / 10%);
153
158
  border: 1px dotted;
154
159
  border-right: 4px solid;
155
160
  padding: calc(0.25rem - 1px);
156
161
  }
157
162
 
158
- .test .data pre {
163
+ .test .data .pre {
159
164
  margin: 0 0 0.25rem;
160
165
  }
161
166
 
@@ -197,7 +202,7 @@
197
202
  <ul>
198
203
  {{#each data}}
199
204
  <li>
200
- <pre>{{json .}}</pre>
205
+ <div class="pre">{{json .}}</div>
201
206
  </li>
202
207
  {{/each}}
203
208
  </ul>
@@ -207,7 +212,7 @@
207
212
  {{else if data.error}}
208
213
  <div class="error">
209
214
  <h3>Error:</h3>
210
- <pre>{{json data.error}}</pre>
215
+ <div class="pre">{{json data.error}}</div>
211
216
  </div>
212
217
  {{/if}}
213
218
  </details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pagean",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "Pagean is a web page analysis tool designed to automate tests requiring web pages to be loaded in a browser window (e.g. horizontal scrollbar, console errors)",
5
5
  "bin": {
6
6
  "pagean": "./bin/pagean.js",
@@ -49,7 +49,7 @@
49
49
  "homepage": "https://gitlab.com/gitlab-ci-utils/pagean#readme",
50
50
  "devDependencies": {
51
51
  "@aarongoldenthal/eslint-config-standard": "^10.0.1",
52
- "@aarongoldenthal/stylelint-config-standard": "^4.1.0",
52
+ "@aarongoldenthal/stylelint-config-standard": "^5.0.0",
53
53
  "bin-tester": "^2.0.1",
54
54
  "eslint": "^8.2.0",
55
55
  "jest": "^27.3.1",
@@ -59,7 +59,7 @@
59
59
  "stylelint": "^14.0.1"
60
60
  },
61
61
  "dependencies": {
62
- "ajv": "^8.6.3",
62
+ "ajv": "^8.7.1",
63
63
  "ajv-errors": "^3.0.0",
64
64
  "axios": "^0.24.0",
65
65
  "ci-logger": "^4.0.1",
@@ -71,4 +71,4 @@
71
71
  "protocolify": "^3.0.0",
72
72
  "puppeteer": "^11.0.0"
73
73
  }
74
- }
74
+ }