Skip to content

Commit 90cde01

Browse files
committed
Forgot to include all of the files
1 parent 613dc62 commit 90cde01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1029
-0
lines changed

.esformatter

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"plugins": [
3+
"esformatter-dot-notation",
4+
"esformatter-quotes",
5+
"esformatter-ignore",
6+
"esformatter-collapse-objects",
7+
"esformatter-remove-trailing-commas"
8+
],
9+
"quotes": {
10+
"type": "single",
11+
"avoidEscape": true
12+
},
13+
"jsx": {
14+
"formatJSX": true,
15+
"attrsOnSameLineAsTag": false,
16+
"maxAttrsOnTag": 3,
17+
"firstAttributeOnSameLine": true,
18+
"alignWithFirstAttribute": false,
19+
"spaceInJSXExpressionContainers": " ",
20+
"htmlOptions": {}
21+
},
22+
"indent": {
23+
"value": " "
24+
},
25+
"whiteSpace": {
26+
"before": {
27+
"IfStatementConditionalOpening": 0
28+
}
29+
},
30+
"collapseObjects": {
31+
"ObjectExpression": {
32+
"maxLineLength": 60,
33+
"maxKeys": 3,
34+
"maxDepth": 2,
35+
"forbidden": [
36+
"FunctionExpression"
37+
]
38+
},
39+
"ArrayExpression": {
40+
"maxLineLength": 60,
41+
"maxKeys": 3,
42+
"maxDepth": 2,
43+
"forbidden": [
44+
"FunctionExpression"
45+
]
46+
}
47+
}
48+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
'use strict';
2+
3+
const path = require('path');
4+
const webpack = require('webpack');
5+
6+
const {version} = require('../package.json');
7+
8+
module.exports = {
9+
devtool: 'source-map',
10+
context: path.join(__dirname, '../'),
11+
performance: {
12+
hints: false
13+
},
14+
entry: [
15+
'./src/_js/index.js'
16+
],
17+
output: {
18+
path: path.join(__dirname, '../src/builds/js/'),
19+
filename: 'index.bundle.js',
20+
publicPath: `/builds/js/`
21+
},
22+
module: {
23+
rules: [{
24+
test: /\.js$/,
25+
exclude: /(node_modules|bower_components)/,
26+
use: {
27+
loader: 'babel-loader',
28+
options: {
29+
'presets': [['es2015', {
30+
'modules': false
31+
}]],
32+
'plugins': [
33+
'transform-class-properties',
34+
'transform-object-rest-spread'
35+
]
36+
}
37+
}
38+
}, {
39+
test: /\.json$/,
40+
loader: 'json-loader'
41+
}]
42+
},
43+
plugins: [
44+
new webpack.DefinePlugin({
45+
'process.env.NODE_ENV': JSON.stringify('development')
46+
})
47+
]
48+
};
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
'use strict';
2+
3+
const path = require('path');
4+
const webpack = require('webpack');
5+
6+
const {version} = require('../package.json');
7+
8+
module.exports = {
9+
devtool: 'source-map',
10+
context: path.join(__dirname, '../'),
11+
performance: {
12+
hints: false
13+
},
14+
entry: [
15+
'./src/_js/index.js'
16+
],
17+
output: {
18+
path: path.join(__dirname, '../src/builds/js/'),
19+
filename: 'index.bundle.js',
20+
publicPath: `/builds/js/`
21+
},
22+
module: {
23+
rules: [{
24+
test: /\.js$/,
25+
exclude: /(node_modules|bower_components)/,
26+
use: {
27+
loader: 'babel-loader',
28+
options: {
29+
'presets': [['es2015', {
30+
'modules': false
31+
}]],
32+
'plugins': [
33+
'transform-class-properties',
34+
'transform-object-rest-spread'
35+
]
36+
}
37+
}
38+
}, {
39+
test: /\.json$/,
40+
loader: 'json-loader'
41+
}]
42+
},
43+
plugins: [
44+
new webpack.optimize.UglifyJsPlugin({
45+
compressor: {
46+
warnings: false,
47+
screw_ie8: true
48+
}
49+
}),
50+
new webpack.DefinePlugin({
51+
'process.env.NODE_ENV': JSON.stringify('production')
52+
})
53+
]
54+
};

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
let gulp = require('gulp');
2+
3+
require('./tasks')(gulp);

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "jekyll-tasks",
3+
"version": "1.0.0",
4+
"description": "A set of gulp tasks and boilerplate setup for Jekyll projects",
5+
"main": "tasks.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/jljorgenson18/jekyll-tasks.git"
12+
},
13+
"author": "Jesse Jorgenson",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/jljorgenson18/jekyll-tasks/issues"
17+
},
18+
"homepage": "https://github.com/jljorgenson18/jekyll-tasks#readme"
19+
}

src/.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.py]
14+
indent_style = space
15+
indent_size = 4

src/404.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
title: "Page not found"
4+
permalink: 404.html
5+
---
6+
7+
<div class="page">
8+
<h1 class="page-title">404: Page not found</h1>
9+
<p>Somehow you ended up on this page and yet.... there is nothing here.
10+
My best guess is that I renamed an article or a page and forgot to do a redirect (my bad).
11+
Second guess is that I wrote an article and then deleted it later because either a) the quality sucked or
12+
b) something caused me to reconsider the premise of the article.
13+
Want to keep trying to find the page? <a href="/">Head back home</a> to try to find it again.</p>
14+
</div>

src/_config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
gems: ['jekyll-paginate','jekyll-feed']
2+
3+
name: Your name
4+
title: Your title
5+
description: Your description
6+
url: http://example.com
7+
markdown: redcarpet
8+
redcarpet:
9+
extensions: [with_toc_data, footnotes]
10+
highlighter: pygments
11+
exclude: [
12+
".editorconfig"
13+
]
14+
baseurl: ""
15+
logo: # /assets/img/logo.png [best 300px X 300px]
16+
paginate: 5
17+
timezone: America/Chicago # eg. Asia/Kathmandu
18+
locale: en_us
19+
twitter_username: yourtwittername
20+
author:
21+
name: Your Full Name
22+
email: youremail@example.com
23+
twitter: yourtwittername

src/_drafts/.gitkeep

Whitespace-only changes.

src/_includes/footer.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<footer
2+
<p class="disclaimer">
3+
&copy; {{ site.time | date: '%Y' }}. All rights reserved.
4+
</p>
5+
</footer>

0 commit comments

Comments
 (0)