Skip to content

Commit

Permalink
v1.5.7. Bugfix.
Browse files Browse the repository at this point in the history
- v1.5.7 December 21, 2013
	- Fixed wzrd.in supportv
  • Loading branch information
balupton committed Dec 21, 2013
1 parent 5e7fc75 commit 77e70b8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
10 changes: 7 additions & 3 deletions Cakefile
@@ -1,4 +1,4 @@
# v1.3.12 December 13, 2013
# v1.3.13 December 19, 2013
# https://github.com/bevry/base


Expand Down Expand Up @@ -51,7 +51,9 @@ for own key,value of config
# Generic

{spawn, exec} = require('child_process')

safe = (next,fn) ->
next ?= (err) -> console.log(err.stack ? err)
fn ?= next # support only one argument
return (err) ->
# success status code
Expand Down Expand Up @@ -152,11 +154,13 @@ actions =
step2 = ->
return step3() if !config.COFFEE_SRC_PATH or !fsUtil.existsSync(COFFEE)
console.log('coffee watch')
spawn(COFFEE, ['-wco', config.COFFEE_OUT_PATH, config.COFFEE_SRC_PATH], {stdio:'inherit', cwd:APP_PATH}).on('close', safe next, step3)
spawn(COFFEE, ['-wco', config.COFFEE_OUT_PATH, config.COFFEE_SRC_PATH], {stdio:'inherit', cwd:APP_PATH}).on('close', safe) # background
step3() # continue while coffee runs in background
step3 = ->
return step4() if !config.DOCPAD_SRC_PATH or !fsUtil.existsSync(DOCPAD)
console.log('docpad run')
spawn(DOCPAD, ['run'], {stdio:'inherit', cwd:APP_PATH}).on('close', safe next, step4)
spawn(DOCPAD, ['run'], {stdio:'inherit', cwd:APP_PATH}).on('close', safe) # background
step4() # continue while docpad runs in background
step4 = next

# Start
Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
@@ -1,5 +1,8 @@
# History

- v1.5.7 December 21, 2013
- Fixed wzrd.in support

- v1.5.6 November 29, 2013
- Fixed browserify support

Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -64,17 +64,18 @@ Tested and working against:
### [Browserify](http://browserify.org/)
- Use: `require('query-engine')`
- Install: `npm install --save query-engine`
- CDN URL: `//wzrd.in/bundle/query-engine@1.5.6`
- CDN URL: `//wzrd.in/bundle/query-engine@1.5.7`

### [Ender](http://ender.jit.su/)
- Use: `require('query-engine')`
- Install: `ender add query-engine`

<!-- /INSTALL -->


### Direct
- Use: `window.queryEngine` or `window.QueryEngine` whichever you prefer
- CDN URL: http://bevry.github.io/query-engine/lib/query-engine.js
- CDN URL: `//bevry.github.io/query-engine/lib/query-engine.js`


<!-- HISTORY/ -->
Expand Down
16 changes: 10 additions & 6 deletions package.json
@@ -1,7 +1,7 @@
{
"title": "Query-Engine",
"name": "query-engine",
"version": "1.5.6",
"version": "1.5.7",
"description": "Query-Engine is a NoSQL and MongoDb compliant query engine. It can run on the server-side with Node.js, or on the client-side within web browsers",
"homepage": "https://github.com/bevry/query-engine",
"license": {
Expand All @@ -28,7 +28,6 @@
"filtering",
"collections"
],
"browsers": true,
"author": "2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011 Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"sponsors": [
"BugHerd <support@bugherd.com> (http://bugherd.com/)"
Expand All @@ -50,15 +49,20 @@
"type": "git",
"url": "http://github.com/bevry/query-engine.git"
},
"browsers": true,
"browser": {
"backbone": false,
"exoskeleton": false
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"exoskeleton": "~0.5.1",
"exoskeleton": "~0.6.3",
"backbone": "~1.1.0",
"underscore": "~1.5.2",
"docpad": "~6.54.5",
"docpad-plugin-ghpages": "~2.4.0",
"docpad-plugin-eco": "~2.0.2",
"docpad": "~6.59.6",
"docpad-plugin-ghpages": "~2.4.1",
"docpad-plugin-eco": "~2.0.3",
"docpad-plugin-coffeescript": "~2.2.3",
"joe": "~1.3.2",
"joe-reporter-console": "~1.2.1",
Expand Down

0 comments on commit 77e70b8

Please sign in to comment.