-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: incorrectly exiting when required
test: updated travis tests
- Loading branch information
Showing
25 changed files
with
274 additions
and
484 deletions.
There are no files selected for viewing
This file contains 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,22 @@ | ||
FROM ubuntu:12.04 | ||
MAINTAINER Remy Sharp <[email protected]> | ||
|
||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | ||
RUN apt-get update && apt-get install curl npm -y | ||
|
||
ENV NVM_DIR /usr/local/nvm | ||
ENV NODE_VERSION iojs | ||
ENV NVM_VERSION 0.26.1 | ||
ENV TRAVIS TRUE | ||
|
||
# # Install nvm with node and npm | ||
RUN curl https://raw.githubusercontent.com/creationix/nvm/v$NVM_VERSION/install.sh | bash \ | ||
&& source $NVM_DIR/nvm.sh \ | ||
&& nvm install 0.10 \ | ||
&& nvm install 0.12 \ | ||
&& nvm install iojs-v1 \ | ||
&& nvm install iojs-v2 \ | ||
&& nvm install iojs-v3 \ | ||
&& nvm install 4.0 \ | ||
&& nvm alias default $NODE_VERSION \ | ||
&& nvm use default |
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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,5 +1,4 @@ | ||
module.exports = { | ||
run: require('./run'), | ||
watch: require('./watch'), | ||
offset: require('./offset'), | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.