1
0
mirror of /repos/Prototyper.git synced 2025-12-30 06:31:32 +01:00

bumped some versions

This commit is contained in:
Aiko Mastboom 2013-05-11 21:58:30 +02:00
parent bfc64a5947
commit 31fd4a5a41
5 changed files with 13 additions and 9 deletions

View File

@ -3,7 +3,7 @@
command -v fleet
fleet_installed=$?
if [ ${fleet_installed} == 1 ]; then
npm install -g http://github.com/aikomastboom/fleet/archive/0.1.8.tar.gz
npm install -g http://github.com/aikomastboom/fleet/archive/0.1.9.tar.gz
fi
# deploy new commit

View File

@ -29,7 +29,8 @@ function replace(text, marker, getReplacement, once) {
})
});
when.all(
match_promises,
match_promises
).then(
function onSuccess(results) {
deferred.resolve(results);
},
@ -45,7 +46,8 @@ function replace(text, marker, getReplacement, once) {
function handTextManipulation(text, promises, handler, callback) {
when.all(
promises,
promises
).then(
function onSuccess(all_results) {
_.forEach(all_results, function loopResults(results) {
_.forEach(results, function handleResult(result) {

View File

@ -26,7 +26,8 @@ module.exports = function (config, mongoInstance) {
},
// there can be only one import_leftovers
true
),
)
).then(
function onSuccess(leftover) {
handleImportMarkers(doc, options, function handleLeftover(err, remainder) {
if (err) {

View File

@ -9,16 +9,16 @@
"private": "true",
"dependencies": {
"share": "~0.6.0",
"connect": "~2.7.6",
"express": "~3.2.0",
"connect": "~2.7.9",
"express": "~3.2.4",
"bson": "~0.1.8",
"mongodb": "~1.2.14",
"handlebars": "~1.0.10",
"underscore": "~1.4.4",
"less": "~1.3.3",
"when": "~2.0.1",
"when": "~2.1.0",
"markdown": "~0.4.0",
"async": "~0.2.7"
"async": "~0.2.8"
},
"devDependencies": {
"sockjs": "~0.3.5"

View File

@ -170,7 +170,8 @@ module.exports = function (config, mongoDataInstance) {
});
});
return when.all(
promises,
promises
).then(
function onSuccess() {
var rendered = null;
try {