Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #289 from littleskunk/lts
Browse files Browse the repository at this point in the history
nodejs lts v8
  • Loading branch information
braydonf committed Dec 6, 2017
2 parents d1f2595 + f65d943 commit ba6db38
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/*
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ addons:
- g++-4.8
- clang
node_js:
- "6.9.1"
- "8"
before_install:
- export CXX="g++-4.8" CC="gcc-4.8"
after_script:
Expand Down
2 changes: 1 addition & 1 deletion ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Replace the values below using the output from `storjshare --version`.
Replace the values below using the output from `node --version`.

```
6.9.1
v8.x.x
```

### Expected Behavior
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ storjshare daemon is also available for Arch Linux as a package on the AUR as [s
Make sure you have the following prerequisites installed:

* Git
* Node.js LTS (6.11.x)
* Node.js LTS (8.x.x)
* NPM
* Python 2.7
* GCC/G++/Make
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/get_dep_ver.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $version = $version.Substring($pos+1)
Write-Host "Found Latest Version of Git for Windows - ${version}"
$env:MINGIT_VERSION = "${version}"

$node_base_ver = 6
$node_base_ver = 8
$arch_ver = "-x64"
$uri = "https://nodejs.org/dist/latest-v${node_base_ver}.x/"
$site = invoke-webrequest $uri -DisableKeepAlive -UseBasicParsing
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/storjshare-daemon-alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:boron-alpine
FROM node:alpine
MAINTAINER Storj Labs (storj.io)

RUN apk add --no-cache bash g++ git make openssl-dev python vim && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/storjshare-daemon-ubuntu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER Storj Labs (www.storj.io)

RUN apt-get update && \
apt-get -y install apt-utils curl && \
curl -sL https://deb.nodesource.com/setup_6.x | bash - && \
curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get -y install build-essential git libssl-dev nodejs python vim && \
npm install --global storjshare-daemon --unsafe-perm && \
apt-get --purge remove -y apt-utils build-essential curl git libssl-dev python vim && \
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
"mkdirp": "^0.5.1",
"pretty-ms": "^3.0.1",
"rc": "^1.2.2",
"readable-stream": "^2.3.3",
"storj-lib": "^8.4.2",
"strip-json-comments": "^2.0.1",
"tail": "^1.2.3",
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parts:
storjshare-daemon:
source-subdir: ..
plugin: nodejs
node-engine: '6.11.3'
node-engine: '8.9.0'
install: npm install
build-packages: [git, python, build-essential]
stage-packages: [nano]

0 comments on commit ba6db38

Please sign in to comment.