1
Fork 0

Switch to node 8 and add lock file

This commit is contained in:
Jake Howard 2018-03-11 11:49:09 +00:00
parent d10e179563
commit 4756612715
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 8197 additions and 3 deletions

View file

@ -3,7 +3,7 @@ version: 2.0
jobs: jobs:
build: build:
docker: docker:
- image: circleci/node:6.10 - image: circleci/node:8.10
environment: environment:
- npm_config_loglevel: notice - npm_config_loglevel: notice
steps: steps:
@ -12,12 +12,12 @@ jobs:
name: Install Hugo name: Install Hugo
command: wget https://github.com/gohugoio/hugo/releases/download/v0.36/hugo_0.36_Linux-64bit.deb -O /tmp/hugo.deb && sudo dpkg -i /tmp/hugo.deb command: wget https://github.com/gohugoio/hugo/releases/download/v0.36/hugo_0.36_Linux-64bit.deb -O /tmp/hugo.deb && sudo dpkg -i /tmp/hugo.deb
- restore_cache: - restore_cache:
key: npm-{{ checksum "package.json" }} key: npm-{{ checksum "package-lock.json" }}
- run: - run:
name: Install dependencies name: Install dependencies
command: npm install command: npm install
- save_cache: - save_cache:
key: npm-{{ checksum "package.json" }} key: npm-{{ checksum "package-lock.json" }}
paths: paths:
- node_modules - node_modules
- run: - run:

8191
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -8,6 +8,9 @@
"type": "git", "type": "git",
"url": "git@github:RealOrangeOne/theorangeone.net" "url": "git@github:RealOrangeOne/theorangeone.net"
}, },
"engine": {
"node": "8.10.0"
},
"author": "Jake Howard <git@theorangeone.net>", "author": "Jake Howard <git@theorangeone.net>",
"devDependencies": { "devDependencies": {
"broken-link-checker-local": "0.1.1", "broken-link-checker-local": "0.1.1",