Skip to content

Commit

Permalink
v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Apr 2, 2014
1 parent 0707f3e commit f84baf5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
*.iml
node_modules
atlassian-ide-plugin.xml
14 changes: 3 additions & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,9 @@ module.exports = function (grunt) {
});

grunt.registerTask("promises-aplus", "run promises a plus test", function () {
var done = this.async();
var child = require("child_process").spawn("promises-aplus-tests", ["test/aplus-adapter"]);
child.stdout.pipe(process.stdout);
child.stderr.pipe(process.stderr);
child.on("close", function (code) {
if (code !== 0) {
done(false);
} else {
done();
}
});
var promisesAplusTests = require("promises-aplus-tests");

promisesAplusTests(require("./test/aplus-adapter"), { reporter: "spec" }, this.async());
});

// Default task.
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a href="http://promisesaplus.com/">
<img src="http://promisesaplus.com/assets/logo-small.png" alt="Promises/A+ logo"
title="Promises/A+ 1.0 compliant" align="right" />
</a>

[![Build Status](https://travis-ci.org/doug-martin/promise-extended.png?branch=master)](undefined)

[![browser support](https://ci.testling.com/doug-martin/promise-extended.png)](https://ci.testling.com/doug-martin/promise-extended)
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "promise-extended",
"version": "0.0.8",
"version": "0.0.9",
"description": "Promises implementation with chainable API",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -33,14 +33,14 @@
"array-extended": "~0.0.3",
"function-extended": "~0.0.3",
"arguments-extended": "~0.0.3",
"grunt": "~0.4.1",
"declare.js": "~0.0.3",
"grunt-contrib-jshint": "~0.3.0"
"declare.js": "~0.0.3"
},
"devDependencies": {
"it": "~0.2.0",
"grunt-it": "~0.3.0",
"promises-aplus-tests": "*",
"grunt-contrib-uglify": "~0.2.0"
"promises-aplus-tests": "1.3.2",
"grunt-contrib-uglify": "~0.2.0",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.3.0"
}
}
4 changes: 2 additions & 2 deletions promise-extended.min.js

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

0 comments on commit f84baf5

Please sign in to comment.