@reddoorla/maintenance 0.43.0 → 0.44.0
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/dist/cli/bin.js +20 -14
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.js +20 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2754,21 +2754,22 @@ import mjml2html from "mjml";
|
|
|
2754
2754
|
var DEFAULT_COPY = {
|
|
2755
2755
|
maintenanceIntro: "Includes checking the hosting, DNS, Content Management System (CMS, if applicable), search indexing and security of the site for major flaws and updating as necessary.",
|
|
2756
2756
|
maintenanceChecks: [
|
|
2757
|
-
"
|
|
2757
|
+
"Deploy & Function Health",
|
|
2758
2758
|
"CMS Checked",
|
|
2759
|
-
"DNS
|
|
2759
|
+
"Domain, DNS & SSL",
|
|
2760
2760
|
"Google Indexed",
|
|
2761
|
-
"
|
|
2762
|
-
"
|
|
2761
|
+
"Security Updates",
|
|
2762
|
+
"Uptime Checked"
|
|
2763
2763
|
],
|
|
2764
2764
|
testingIntro: "Testing includes checks similar to those at launch: testing on common browsers and operating systems, at different screen sizes, and checking every function, and updating all packages for performance rather than just those needed for security.",
|
|
2765
2765
|
testingChecklist: [
|
|
2766
2766
|
"Desktop Browsers",
|
|
2767
2767
|
"Mobile Browsers",
|
|
2768
|
-
"
|
|
2769
|
-
"
|
|
2768
|
+
"Page Titles & Meta",
|
|
2769
|
+
"Links & Navigation",
|
|
2770
2770
|
"Form Functionality",
|
|
2771
|
-
"
|
|
2771
|
+
"Interactions & Animations",
|
|
2772
|
+
"Verified After Updates"
|
|
2772
2773
|
],
|
|
2773
2774
|
notesHeader: "NOTES",
|
|
2774
2775
|
seoCta: "Contact us if you are interested in more in-depth data or have questions about SEO.",
|
|
@@ -3255,20 +3256,25 @@ async function renderReportHtml(data) {
|
|
|
3255
3256
|
|
|
3256
3257
|
// src/reports/checklist.ts
|
|
3257
3258
|
var MAINTENANCE_CHECKLIST = [
|
|
3258
|
-
{ key: "
|
|
3259
|
+
{ key: "deploy", label: "Deploy & Function Health", field: "Maint: Deploy & Function Health" },
|
|
3259
3260
|
{ key: "cms", label: "CMS Checked", field: "Maint: CMS Checked" },
|
|
3260
|
-
{ key: "
|
|
3261
|
+
{ key: "domain", label: "Domain, DNS & SSL", field: "Maint: Domain, DNS & SSL" },
|
|
3261
3262
|
{ key: "google", label: "Google Indexed", field: "Maint: Google Indexed" },
|
|
3262
|
-
{ key: "
|
|
3263
|
-
{ key: "
|
|
3263
|
+
{ key: "security", label: "Security Updates", field: "Maint: Security Updates" },
|
|
3264
|
+
{ key: "uptime", label: "Uptime Checked", field: "Maint: Uptime Checked" }
|
|
3264
3265
|
];
|
|
3265
3266
|
var TESTING_CHECKLIST = [
|
|
3266
3267
|
{ key: "desktop", label: "Desktop Browsers", field: "Test: Desktop Browsers" },
|
|
3267
3268
|
{ key: "mobile", label: "Mobile Browsers", field: "Test: Mobile Browsers" },
|
|
3268
|
-
{ key: "
|
|
3269
|
-
{ key: "
|
|
3269
|
+
{ key: "titles", label: "Page Titles & Meta", field: "Test: Page Titles & Meta" },
|
|
3270
|
+
{ key: "links", label: "Links & Navigation", field: "Test: Links & Navigation" },
|
|
3270
3271
|
{ key: "forms", label: "Form Functionality", field: "Test: Form Functionality" },
|
|
3271
|
-
{
|
|
3272
|
+
{
|
|
3273
|
+
key: "interactions",
|
|
3274
|
+
label: "Interactions & Animations",
|
|
3275
|
+
field: "Test: Interactions & Animations"
|
|
3276
|
+
},
|
|
3277
|
+
{ key: "updates", label: "Verified After Updates", field: "Test: Verified After Updates" }
|
|
3272
3278
|
];
|
|
3273
3279
|
var ALL_CHECKLIST_FIELDS = [...MAINTENANCE_CHECKLIST, ...TESTING_CHECKLIST].map(
|
|
3274
3280
|
(i) => i.field
|