This commit is contained in:
Stuart Colville 2019-02-15 12:48:19 +00:00
Родитель 7a139528bd
Коммит 4eaf103df7
5 изменённых файлов: 21 добавлений и 7 удалений

Просмотреть файл

@ -32,7 +32,9 @@ Note: Running locally will show unpublished content that uses the `published: fa
| Command | Description |
| ------------------- | --------------------------------------------------------------------------------------- |
| yarn start | Starts jekyll and includes unpublished content. |
| yarn clean | Clears the output directly and cleans the .jekyll-cache. |
| yarn build | Builds the site. |
| yarn start | Starts jekyll and includes unpublished content. (Note the first run is slow!) |
| yarn start-prodlike | Starts jekyll and doesn't include unpublished content for a production-like experience. |
## Content Updates

Просмотреть файл

@ -55,10 +55,6 @@ exclude:
assets:
compression: true
caching:
path: ".jekyll-cache/assets"
type: memory
enabled: true
sources:
- _assets/img
- _assets/css

13
_config_local.yml Normal file
Просмотреть файл

@ -0,0 +1,13 @@
assets:
compression: false
caching:
path: ".jekyll-cache/assets"
type: file
enabled: true
defaults:
js:
integrity: false
css:
integrity: false
img:
integrity: false

Просмотреть файл

@ -21,6 +21,7 @@
"eslint-plugin-prettier": "3.0.1",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"rimraf": "^2.6.3",
"svgo": "1.1.1"
},
"scripts": {
@ -29,7 +30,9 @@
"prettier-ci": "prettier -c '**'",
"prettier-dev": "pretty-quick --branch master",
"test": "npm run prettier-ci && npm run lint",
"start": "SVGO_BIN='node_modules/svgo/bin/svgo' jekyll serve --unpublished",
"clean": "rimraf './.jekyll-cache/' && jekyll clean",
"build": "JEKYLL_ENV=production SVGO_BIN='node_modules/svgo/bin/svgo' jekyll build",
"start": "jekyll serve --unpublished --config _config.yml,_config_local.yml",
"start-prodlike": "SVGO_BIN='node_modules/svgo/bin/svgo' jekyll serve"
}
}

Просмотреть файл

@ -1006,7 +1006,7 @@ restore-cursor@^2.0.0:
onetime "^2.0.0"
signal-exit "^3.0.2"
rimraf@2.6.3:
rimraf@2.6.3, rimraf@^2.6.3:
version "2.6.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==