We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf482ed commit a7e3d1fCopy full SHA for a7e3d1f
5 files changed
.eleventy.js
@@ -0,0 +1,8 @@
1
+module.exports = function(config) {
2
+ return {
3
+ dir: {
4
+ input: 'src',
5
+ output: 'dist'
6
+ },
7
+ };
8
+};
.gitignore
@@ -0,0 +1,4 @@
+dist
+node_modules
+
+.DS_Store
package.json
@@ -5,5 +5,14 @@
"repository": "https://github.com/kylegach/kylegach.com.git",
"author": "Kyle Gach <kyle.gach@gmail.com>",
"license": "MIT",
- "private": true
+ "private": true,
9
+ "devDependencies": {
10
+ "@11ty/eleventy": "^0.10.0"
11
12
+ "scripts": {
13
+ "build": "ELEVENTY_ENV=production yarn eleventy",
14
+ "clean": "rm -rf dist",
15
+ "serve": "ELEVENTY_ENV=development yarn eleventy --serve",
16
+ "start": "yarn serve"
17
+ }
18
}
src/index.md
@@ -0,0 +1 @@
+# Hello world
0 commit comments