This repository was archived by the owner on Jan 16, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 317
Static site generator #82
Open
josephfinlayson
wants to merge
7
commits into
webpack:master
Choose a base branch
from
josephfinlayson:static-site
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1c07bb1
create script to build github pages static sites
josephfinlayson 6c312f9
fixing static site generator typos
josephfinlayson fbf35e4
copying files out of public folder
josephfinlayson d8636f6
removing random number cruft
josephfinlayson e15f125
make git deploy cross platform
josephfinlayson dd4e1eb
split out tasks, add shelljs as a dependency
josephfinlayson 4e62a2c
remove unneeded deploy script
josephfinlayson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| /node_modules | ||
| /build | ||
| .vagrant | ||
| .idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| require('shelljs/global'); | ||
|
|
||
| if (!which('git')) { | ||
| echo('Sorry, this script requires git to be available on the command line'); | ||
| exit(1); | ||
| } | ||
|
|
||
| exec('git stash'); | ||
| var commitDate = new Date().toString().replace(/\s/g,'_').replace(/\W/g, ''); | ||
| cp('-f', 'lib/staticSite.html', 'build/public/index.html'); | ||
| exec('git branch gh-pages'); | ||
| exec('git checkout gh-pages'); | ||
| cp('-rf', './build/public/*', '.'); | ||
| exec('git add .'); | ||
| exec('git commit -m "Automated commit on' + commitDate+ '"'); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <link rel="stylesheet" href="main.css"/> | ||
| </head> | ||
| <body> | ||
| <div id="content"></div> | ||
| </body> | ||
| <script src="main.js"></script> | ||
| </html> | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ | |
| "dev-server": "webpack-dev-server --config webpack-dev-server.config.js --progress --colors --port 2992 --inline", | ||
| "hot-dev-server": "webpack-dev-server --config webpack-hot-dev-server.config.js --hot --progress --colors --port 2992 --inline", | ||
| "build": "webpack --config webpack-production.config.js --progress --profile --colors", | ||
| "build-static": "webpack --config webpack-static-site.config.js --progress --profile --colors && node gh-pages-deploy.js", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could you split it into two tasks. |
||
| "start-dev": "node lib/server-development", | ||
| "start": "node lib/server-production" | ||
| }, | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| module.exports = [ | ||
| require("./make-webpack-config")({ | ||
| longTermCaching: true, | ||
| separateStylesheet: true, | ||
| minimize: true, | ||
| staticSite:true | ||
| }), | ||
| require("./make-webpack-config")({ | ||
| prerender: true, | ||
| minimize: true, | ||
| staticSite:true | ||
| }) | ||
| ]; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add shelljs to the package.json