Initial commit from create-parcel
This commit is contained in:
commit
32aad3bfd3
5 changed files with 2088 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.parcel-cache/
|
||||
dist/
|
||||
node_modules/
|
14
package.json
Normal file
14
package.json
Normal 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
2050
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
13
src/index.html
Normal file
13
src/index.html
Normal 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
8
src/style.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
html {
|
||||
color-scheme: light dark;
|
||||
font-family: system-ui;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
}
|
Loading…
Add table
Reference in a new issue