Merge branch 'master' into fix_46-gulp-watch
This commit is contained in:
commit
bf9c2899cf
2
.babelrc
2
.babelrc
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"presets": ["es2015"],
|
||||
"presets": ["env"],
|
||||
"plugins": [
|
||||
"syntax-object-rest-spread",
|
||||
"transform-object-rest-spread"
|
||||
|
|
10
README.md
10
README.md
|
@ -69,16 +69,16 @@ to `/dist/css/{filename}.css`. Import statements will be resolved as part of the
|
|||
|
||||
## Environment variables
|
||||
|
||||
Two seperate the development and production *- aka build -* stages, all gulp
|
||||
tasks run with a node environment variable named either `development` or
|
||||
|
||||
To seperate the development and production *- aka build -* stages, all gulp tasks run with a node environment variable named either `development` or
|
||||
`production`.
|
||||
|
||||
You can access the environment variable inside the theme files with
|
||||
You can access the environment variable inside the theme files with
|
||||
`getenv "NODE_ENV"`. See the following example for a conditional statement:
|
||||
|
||||
{{ if eq (getenv "NODE_ENV") "development" }}You're in development!{{ end }}
|
||||
|
||||
All tasks starting with *build* set the environment variable to `production` -
|
||||
All tasks starting with *build* set the environment variable to `production` -
|
||||
the other will set it to `development`.
|
||||
|
||||
## Deploying to netlify
|
||||
|
@ -90,7 +90,7 @@ Now netlify will build and deploy your site whenever you push to git.
|
|||
|
||||
You can also click this button:
|
||||
|
||||
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/eliwilliamson/victor-hugo)
|
||||
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/victor-hugo)
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,6 +2,7 @@
|
|||
"name": "victor-hugo",
|
||||
"version": "1.0.0",
|
||||
"description": "Victor Hugo is a Hugo boilerplate for creating truly epic websites!",
|
||||
"repository": "netlify/victor-hugo",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"hugo": "gulp hugo",
|
||||
|
@ -19,7 +20,7 @@
|
|||
"babel-plugin-transform-class-properties": "^6.10.2",
|
||||
"babel-plugin-transform-object-assign": "^6.8.0",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.8.0",
|
||||
"babel-preset-es2015": "^6.9.0",
|
||||
"babel-preset-env": "1.6.0",
|
||||
"babel-register": "^6.11.6",
|
||||
"browser-sync": "^2.13.0",
|
||||
"css-loader": "^0.28.2",
|
||||
|
@ -32,12 +33,12 @@
|
|||
"gulp-postcss": "^6.1.1",
|
||||
"gulp-util": "^3.0.7",
|
||||
"gulp-watch": "^4.3.11",
|
||||
"hugo-bin": "^0.12.0",
|
||||
"hugo-bin": "^0.13.0",
|
||||
"imports-loader": "^0.7.1",
|
||||
"postcss-cssnext": "^2.7.0",
|
||||
"postcss-import": "^10.0.0",
|
||||
"url-loader": "^0.5.7",
|
||||
"webpack": "^2.6.0",
|
||||
"webpack": "3.6.0",
|
||||
"whatwg-fetch": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<html lang="{{ $.Site.Language.Lang }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<base href="{{ $.Site.BaseURL }}">
|
||||
<title>{{ $.Site.Title }}</title>
|
||||
<link rel="stylesheet" href="css/main.css"/>
|
||||
|
|
Reference in New Issue