Skip to content

Commit 23bc816

Browse files
committed
Initial commit
1 parent b68b0d1 commit 23bc816

11 files changed

+7298
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["env"]
3+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/node_modules
2+
/dist
3+
.cache

.postcssrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": {
3+
"autoprefixer": true
4+
}
5+
}

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Fast ⚡️
2+
3+
### Develop, build, deploy, redeploy, and teardown pages fast ⚡️.

favicon.ico

21.3 KB
Binary file not shown.

favicon.png

10.9 KB
Loading

index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<!--Replace the favicon images in the root directory -->
8+
<link rel="icon" type="image/png" href="favicon.png"/>
9+
10+
<meta name="description" content="Develop, build, deploy, redeploy, and teardown pages fast ⚡️">
11+
<title>Fast.</title>
12+
</head>
13+
<body>
14+
<!-- Add your content here -->
15+
<section>
16+
<h1>This is Fast.</h1>
17+
<img src="favicon.png" alt="Fast logo">
18+
</section>
19+
<script src="index.js"></script>
20+
21+
<!-- Google Analytics: change UA-XXXXX-Y to be your ID. -->
22+
<script>
23+
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
24+
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
25+
</script>
26+
<script src="https://www.google-analytics.com/analytics.js" async></script>
27+
</body>
28+
</html>

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import 'normalize.css'
2+
import './index.scss'

index.scss

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
:root {
2+
--background-color: black;
3+
--color: #ffdd01;
4+
}
5+
6+
body {
7+
background: var(--background-color);
8+
color: var(--color);
9+
font-family: sans-serif;
10+
11+
section {
12+
display: flex;
13+
flex-direction: column;
14+
justify-content: center;
15+
align-items: center;
16+
height: 100vh;
17+
width: 100vw;
18+
}
19+
}

package.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "fast",
3+
"version": "0.0.1",
4+
"description": "Modern frontend stack",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "parcel -p 3000 index.html",
8+
"serve": "yarn start --open",
9+
"build": "parcel build index.html",
10+
"deploy": "cd dist && surge",
11+
"redeploy": "cd dist && surge --domain",
12+
"teardown": "cd dist && surge teardown"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/reblim/fast.git"
17+
},
18+
"author": "Milber Ferreira",
19+
"license": "MIT",
20+
"bugs": {
21+
"url": "https://github.com/reblim/fast/issues"
22+
},
23+
"homepage": "https://github.com/reblim/fast#readme",
24+
"devDependencies": {
25+
"autoprefixer": "^9.8.6",
26+
"babel-cli": "^6.26.0",
27+
"babel-core": "^6.26.3",
28+
"babel-preset-env": "^1.7.0",
29+
"node-sass": "^4.14.1",
30+
"parcel-bundler": "^1.12.4",
31+
"surge": "^0.21.6"
32+
},
33+
"dependencies": {
34+
"normalize.css": "^7.0.0"
35+
}
36+
}

0 commit comments

Comments
 (0)