-
Notifications
You must be signed in to change notification settings - Fork 30
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 #11 from garyb/update-build
Update build for pursuit publishing, include README badges
- Loading branch information
Showing
4 changed files
with
46 additions
and
27 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 |
---|---|---|
@@ -1,10 +1,17 @@ | ||
language: node_js | ||
dist: trusty | ||
sudo: required | ||
node_js: | ||
- 6 | ||
node_js: stable | ||
install: | ||
- npm install pulp bower -g | ||
- npm install && bower install | ||
- npm install -g bower | ||
- npm install | ||
- bower install --production | ||
script: | ||
- npm run test | ||
- npm run -s build | ||
- bower install | ||
- npm run -s test | ||
after_success: | ||
- >- | ||
test $TRAVIS_TAG && | ||
echo $GITHUB_TOKEN | pulp login && | ||
echo y | pulp publish --no-push |
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,25 +1,14 @@ | ||
{ | ||
"name": "purescript-formatters", | ||
"description": "Replacement for numeral.js, moment.js etc", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/slamdata/purescript-formatters" | ||
}, | ||
"contributors": [ | ||
"Maxim Zimaliev <zimaliev@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/slamdata/purescript-formatters/issues" | ||
}, | ||
"private": true, | ||
"scripts": { | ||
"build": "pulp build -- --censor-lib --strict --stash", | ||
"test": "pulp test -- --censor-lib --strict --stash" | ||
"clean": "rimraf output && rimraf .pulp-cache", | ||
"build": "pulp build -- --censor-lib --strict", | ||
"test": "pulp test" | ||
}, | ||
"homepage": "https://github.com/slamdata/purescript-formatters#readme", | ||
"dependencies": { | ||
"pulp": "^9.1.0", | ||
"devDependencies": { | ||
"pulp": "^10.0.1", | ||
"purescript": "^0.10.7", | ||
"purescript-psa": "^0.3.9" | ||
"purescript-psa": "^0.4.0", | ||
"rimraf": "^2.6.1" | ||
} | ||
} |