@upleveled/preflight 9.0.10 → 9.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upleveled/preflight",
3
- "version": "9.0.10",
3
+ "version": "9.0.12",
4
4
  "repository": "upleveled/preflight",
5
5
  "license": "MIT",
6
6
  "author": "UpLeveled (https://github.com/upleveled)",
@@ -18,34 +18,34 @@
18
18
  "src"
19
19
  ],
20
20
  "dependencies": {
21
- "algoliasearch": "5.46.3",
21
+ "algoliasearch": "5.47.0",
22
22
  "chalk": "5.6.2",
23
- "cheerio": "1.1.2",
23
+ "cheerio": "1.2.0",
24
24
  "depcheck": "1.4.7",
25
25
  "domhandler": "5.0.3",
26
26
  "execa": "9.6.1",
27
- "listr2": "9.0.5",
27
+ "listr2": "10.1.0",
28
28
  "node-fetch": "3.3.2",
29
29
  "p-reduce": "3.0.0",
30
30
  "readdirp": "5.0.0",
31
31
  "semver": "7.7.3",
32
- "top-user-agents": "2.1.90"
32
+ "top-user-agents": "2.1.92"
33
33
  },
34
34
  "devDependencies": {
35
- "@types/node": "25.0.9",
35
+ "@types/node": "25.0.10",
36
36
  "@types/p-map": "2.0.0",
37
37
  "@types/semver": "7.7.1",
38
38
  "eslint": "9.39.2",
39
- "eslint-config-upleveled": "9.4.2",
39
+ "eslint-config-upleveled": "9.4.6",
40
40
  "p-map": "7.0.4",
41
- "prettier": "3.8.0",
42
- "stylelint": "16.26.1",
41
+ "prettier": "3.8.1",
42
+ "stylelint": "17.0.0",
43
43
  "typescript": "5.9.3",
44
- "typescript-eslint": "8.53.0",
45
- "vitest": "4.0.17"
44
+ "typescript-eslint": "8.54.0",
45
+ "vitest": "4.0.18"
46
46
  },
47
47
  "engines": {
48
- "node": ">=18"
48
+ "node": ">=22"
49
49
  },
50
50
  "scripts": {
51
51
  "docker-build": "docker build --tag preflight .",
@@ -32,13 +32,13 @@ export default async function linkOnGithubAbout() {
32
32
 
33
33
  if (!urlInAboutSection) {
34
34
  throw new Error(
35
- `Deployed project link not found in About section on ${repoUrl}. Click on the cog symbol to the right of the About heading and paste the Repl.it / Netlify / Fly.io link in the Website box.`,
35
+ `Deployed project link not found in About section on ${repoUrl}. Click on the cog symbol to the right of the About heading and paste the Replit / Netlify / Fly.io link in the Website box.`,
36
36
  );
37
37
  }
38
38
 
39
39
  const response = await fetch(urlInAboutSection, {
40
40
  headers: {
41
- // For repl.it
41
+ // For Replit
42
42
  'user-agent': randomUserAgent(),
43
43
  },
44
44
  });