Initial commit from create-parcel

This commit is contained in:
Isaac Mills 2025-04-08 07:56:12 -06:00
commit 32aad3bfd3
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
5 changed files with 2088 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.parcel-cache/
dist/
node_modules/

14
package.json Normal file
View file

@ -0,0 +1,14 @@
{
"name": "parcel-vanilla-starter",
"private": true,
"version": "0.0.0",
"source": "src/index.html",
"scripts": {
"start": "parcel",
"build": "parcel build"
},
"dependencies": {},
"devDependencies": {
"parcel": "^2.14.0"
}
}

2050
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

13
src/index.html Normal file
View file

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parcel Vanilla App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Parcel Vanilla App</h1>
<p>Edit <code>src/index.html</code> to get started!</p>
</body>
</html>

8
src/style.css Normal file
View file

@ -0,0 +1,8 @@
html {
color-scheme: light dark;
font-family: system-ui;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}