Add parcel

This commit is contained in:
He4eT 2021-02-18 23:22:17 +05:00
commit dd4ce350a8
4 changed files with 6857 additions and 2 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
node_modules/
dist/
.cache/

11
index.html Normal file
View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IFPlayer</title>
</head>
<body>
</body>
</html>

6836
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -4,8 +4,12 @@
"description": "Play interactive fiction games in your browser", "description": "Play interactive fiction games in your browser",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "dev": "parcel index.html",
"build": "parcel build index.html"
}, },
"author": "He4eT", "author": "He4eT",
"license": "MIT" "license": "MIT",
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
} }