Skip to content

Commit ef62889

Browse files
committed
Dev Initial
1 parent 221f3e3 commit ef62889

32 files changed

+6020
-340
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
_site
2-
.sass-cache
1+
/node_modules
2+
/public

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A collection of open source projects from Skcript.
1010
### Compiling & Running
1111
1. Clone this repo: `git clone https://github.com/skcript/skcript.github.io.git`
1212
2. Now run `cd skcript.github.io`
13-
3. Just run `jekyll serve --watch`
13+
3. Just run `yarn start`
1414
4. Access the site at `http://localhost:4000`
1515

1616
### Authors
@@ -19,7 +19,7 @@ A collection of open source projects from Skcript.
1919
License
2020
--------
2121

22-
Copyright 2016 Skcript.
22+
Copyright 2017 Skcript.
2323

2424
Licensed under the Apache License, Version 2.0 (the "License");
2525
you may not use this file except in compliance with the License.

_config.yml

-12
This file was deleted.

_includes/footer.html

-5
This file was deleted.

_includes/head.html

-12
This file was deleted.

_includes/header.html

Whitespace-only changes.

_layouts/default.html

-20
This file was deleted.

_layouts/page.html

-14
This file was deleted.

_layouts/post.html

-15
This file was deleted.

_sass/_foundation.scss

-2
This file was deleted.

_sass/_layout.scss

Whitespace-only changes.

_sass/_skcript.scss

-46
This file was deleted.

_sass/_syntax-highlighting.scss

Whitespace-only changes.

about.md

-11
This file was deleted.

config/path-config.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"src": "./src",
3+
"dest": "./public",
4+
5+
"html": {
6+
"src": "html",
7+
"dest": "./"
8+
},
9+
10+
"static": {
11+
"src": "static",
12+
"dest": "./"
13+
},
14+
15+
"javascripts": {
16+
"src": "javascripts",
17+
"dest": "javascripts"
18+
},
19+
20+
"stylesheets": {
21+
"src": "stylesheets",
22+
"dest": "stylesheets"
23+
},
24+
25+
"images": {
26+
"src": "images",
27+
"dest": "images"
28+
},
29+
30+
"fonts": {
31+
"src": "fonts",
32+
"dest": "fonts"
33+
},
34+
35+
"icons": {
36+
"src": "icons",
37+
"dest": "images"
38+
}
39+
}

config/task-config.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module.exports = {
2+
html : true,
3+
images : true,
4+
fonts : true,
5+
static : true,
6+
svgSprite : true,
7+
ghPages : true,
8+
stylesheets : true,
9+
10+
javascripts: {
11+
entry: {
12+
app: ["./app.js"]
13+
}
14+
},
15+
16+
browserSync: {
17+
server: {
18+
baseDir: 'public'
19+
}
20+
},
21+
22+
ghPages: {
23+
branch: "master",
24+
},
25+
26+
production: {
27+
rev: true
28+
}
29+
}
30+

css/main.scss

-11
This file was deleted.

feed.xml

-30
This file was deleted.

0 commit comments

Comments
 (0)