Skip to content

Commit 566b70d

Browse files
committed
prettier@3, linkedom and lint-staged upgrade
rollup plugins & husky
1 parent ce84def commit 566b70d

File tree

10 files changed

+2621
-1270
lines changed

10 files changed

+2621
-1270
lines changed

.github/dependabot.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ updates:
1515
dependency-type: "production"
1616
ignore:
1717
- dependency-name: "alpinejs"
18+
- dependency-name: "tailwindcss"
19+
- dependency-name: "rollup"
20+
- dependency-name: "edge.js"

.husky/pre-commit

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
42
npx lint-staged

package-lock.json

+2,600-1,250
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+10-11
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,27 @@
1717
"format": "prettier './{packages/**/,cypress/**/*,lib/}*.{js,html,css}' --write",
1818
"check:format": "prettier './{packages/**/,cypress/**/*,}*.{js,html,css}' -c",
1919
"prepackage": "npm run build",
20-
"package": "cd ./dist/chrome && zip -r ../alpine-devtools-$npm_package_version.zip . && rm -rf ../chrome",
21-
"prepare": "husky install"
20+
"package": "cd ./dist/chrome && zip -r ../alpine-devtools-$npm_package_version.zip . && rm -rf ../chrome"
2221
},
2322
"license": "MIT",
2423
"devDependencies": {
25-
"@rollup/plugin-node-resolve": "^13.1.3",
26-
"@rollup/plugin-replace": "^4.0.0",
24+
"@rollup/plugin-node-resolve": "16.0.1",
25+
"@rollup/plugin-replace": "6.0.2",
2726
"@tailwindcss/forms": "^0.3.3",
2827
"@tailwindcss/jit": "^0.1.18",
2928
"alpinejs": "^2.8.2",
3029
"cypress": "14.2.0",
3130
"cypress-iframe": "^1.0.1",
3231
"edge.js": "^5.3.3",
33-
"husky": "^5.2.0",
34-
"linkedom": "^0.14.4",
35-
"lint-staged": "^12.3.5",
36-
"prettier": "^2.5.1",
32+
"husky": "9.1.7",
33+
"linkedom": "0.18.9",
34+
"lint-staged": "15.5.0",
35+
"prettier": "3.5.3",
3736
"rollup": "^2.70.0",
38-
"rollup-plugin-copy": "^3.4.0",
39-
"rollup-plugin-filesize": "^9.1.2",
37+
"rollup-plugin-copy": "3.5.0",
38+
"rollup-plugin-filesize": "10.0.0",
4039
"rollup-plugin-postcss": "^4.0.2",
41-
"rollup-plugin-serve": "^1.1.0",
40+
"rollup-plugin-serve": "3.0.0",
4241
"split-grid": "^1.0.11",
4342
"tailwindcss": "^2.1.4"
4443
},

packages/shell-chrome/src/devtools/styles.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ body {
3737
height: 100vh;
3838
color: #888;
3939
background-color: #eee;
40-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
41-
'Helvetica Neue', sans-serif;
40+
font-family:
41+
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
42+
sans-serif;
4243
padding: 20px;
4344
}

packages/simulator/example.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

packages/simulator/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

packages/simulator/navigation-target.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

packages/simulator/no-components.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

packages/simulator/v3.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

0 commit comments

Comments
 (0)