@upleveled/preflight 9.0.9 → 9.0.11
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.
|
|
3
|
+
"version": "9.0.11",
|
|
4
4
|
"repository": "upleveled/preflight",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "UpLeveled (https://github.com/upleveled)",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"src"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"algoliasearch": "5.46.
|
|
21
|
+
"algoliasearch": "5.46.3",
|
|
22
22
|
"chalk": "5.6.2",
|
|
23
23
|
"cheerio": "1.1.2",
|
|
24
24
|
"depcheck": "1.4.7",
|
|
@@ -29,20 +29,20 @@
|
|
|
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.
|
|
32
|
+
"top-user-agents": "2.1.90"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "25.0.
|
|
35
|
+
"@types/node": "25.0.9",
|
|
36
36
|
"@types/p-map": "2.0.0",
|
|
37
37
|
"@types/semver": "7.7.1",
|
|
38
38
|
"eslint": "9.39.2",
|
|
39
39
|
"eslint-config-upleveled": "9.4.2",
|
|
40
40
|
"p-map": "7.0.4",
|
|
41
|
-
"prettier": "3.
|
|
41
|
+
"prettier": "3.8.0",
|
|
42
42
|
"stylelint": "16.26.1",
|
|
43
43
|
"typescript": "5.9.3",
|
|
44
|
-
"typescript-eslint": "8.
|
|
45
|
-
"vitest": "4.0.
|
|
44
|
+
"typescript-eslint": "8.53.0",
|
|
45
|
+
"vitest": "4.0.17"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=18"
|
|
@@ -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
|
|
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
|
|
41
|
+
// For Replit
|
|
42
42
|
'user-agent': randomUserAgent(),
|
|
43
43
|
},
|
|
44
44
|
});
|
|
@@ -45,7 +45,7 @@ export default async function stylelintConfigIsValid() {
|
|
|
45
45
|
throw new Error(
|
|
46
46
|
`Your current version of the UpLeveled Stylelint Config (${localVersion}) is older than the latest version ${remoteVersion} - upgrade by running:
|
|
47
47
|
|
|
48
|
-
pnpm add stylelint-config-upleveled@${remoteVersion}`,
|
|
48
|
+
pnpm add --save-dev stylelint-config-upleveled@${remoteVersion}`,
|
|
49
49
|
);
|
|
50
50
|
}
|
|
51
51
|
|