Skip to content

Commit 616830a

Browse files
committed
Hello snowpack
1 parent 31423f4 commit 616830a

11 files changed

+3021
-12155
lines changed

.eslintrc.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
extends: [
3+
"eslint:recommended",
4+
"plugin:prettier/recommended"
5+
],
6+
parserOptions: {
7+
sourceType: "module",
8+
ecmaVersion: 2020
9+
},
10+
plugins: [
11+
"prettier"
12+
],
13+
rules: {
14+
"prettier/prettier": [
15+
2, {
16+
"singleQuote": true,
17+
"semi": false
18+
}
19+
]
20+
},
21+
env: {
22+
es6: true,
23+
browser: true
24+
}
25+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.envrc
22
node_modules
3+
web_modules
File renamed without changes.

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<link rel="stylesheet" href="/assets/style.css" />
2+
<div id="app"></div>
3+
<script type="module" src="/src/app.js"></script>

index.js

Lines changed: 0 additions & 107 deletions
This file was deleted.

netlify.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build]
2-
command = "npm run build"
3-
publish = "build"
2+
command = "yarn opt"
3+
publish = "."

0 commit comments

Comments
 (0)