forked from sintaxi/harp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request sintaxi#502 from sintaxi/release-v0.20.0
Release v0.20.0
- Loading branch information
Showing
5 changed files
with
45 additions
and
11 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,6 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "0.12" | ||
- "4.2" | ||
- "5.0" |
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,28 @@ | ||
version: "{build}" | ||
os: Windows Server 2012 R2 | ||
|
||
# Test against this version of Node.js | ||
environment: | ||
matrix: | ||
- nodejs_version: "0.12" | ||
- nodejs_version: "4.2" | ||
- nodejs_version: "5.0" | ||
|
||
# Install scripts. (runs after repo cloning) | ||
install: | ||
# Get the latest stable version of Node.js or io.js | ||
- ps: Install-Product node $env:nodejs_version | ||
# install modules | ||
- npm install | ||
|
||
# Post-install test scripts. | ||
test_script: | ||
# Output useful info for debugging. | ||
- node --version | ||
- npm --version | ||
# run tests | ||
- npm test | ||
|
||
# Don't actually build or deploy. | ||
build: off | ||
deploy: off |
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 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,6 +1,6 @@ | ||
{ | ||
"name": "harp", | ||
"version": "0.19.0", | ||
"version": "0.20.0", | ||
"description": "Static web server with built in preprocessing", | ||
"author": "Brock Whitten <[email protected]>", | ||
"contributors": | ||
|
@@ -45,7 +45,7 @@ | |
"parseurl": "1.3.0", | ||
"pause": "0.1.0", | ||
"send": "0.13.0", | ||
"terraform": "0.12.1" | ||
"terraform": "0.13.2" | ||
}, | ||
"devDependencies": { | ||
"cheerio": "0.19.0", | ||
|
@@ -62,6 +62,6 @@ | |
"readmeFilename": "README.md", | ||
"bin": "./bin/harp", | ||
"engines": { | ||
"node": ">=0.10" | ||
"node": ">=0.12" | ||
} | ||
} |