upgrade vite

This commit is contained in:
“chrisshank” 2024-12-02 02:19:34 -08:00
parent cf6a253972
commit 1b86089e5d
3 changed files with 4 additions and 6 deletions

View File

@ -59,9 +59,7 @@
</style> </style>
</head> </head>
<body> <body>
<folk-shape x="100" y="100" width="50" height="50"> <folk-shape x="100" y="100" width="50" height="50"></folk-shape>
<h2>Lorem ipsum</h2>
</folk-shape>
<folk-shape x="100" y="200" width="50" height="50"></folk-shape> <folk-shape x="100" y="200" width="50" height="50"></folk-shape>
<folk-shape x="100" y="300" width="50" height="50"></folk-shape> <folk-shape x="100" y="300" width="50" height="50"></folk-shape>

View File

@ -17,6 +17,6 @@
}, },
"devDependencies": { "devDependencies": {
"typescript": "^5.7.2", "typescript": "^5.7.2",
"vite": "^5.4.10" "vite": "^6.0.0"
} }
} }

View File

@ -9,7 +9,7 @@ const input: Record<string, string> = files.reduce((acc, file) => {
acc[file.replace('.html', '')] = resolve(demoDir, file); acc[file.replace('.html', '')] = resolve(demoDir, file);
return acc; return acc;
}, {} as Record<string, string>); }, {} as Record<string, string>);
console.log(input);
const linkGenerator = (): Plugin => { const linkGenerator = (): Plugin => {
return { return {
name: 'link-generator', name: 'link-generator',