Skip to content

Commit

Permalink
v6.51.3. Bugfix.
Browse files Browse the repository at this point in the history
- v6.51.3 August 29, 2013
	- Fixed `docpad uninstall <pluginName>` (feature introduced in v6.51.0)
  • Loading branch information
balupton committed Aug 29, 2013
1 parent d16119e commit 83f23a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## History

- v6.51.3 August 29, 2013
- Fixed `docpad uninstall <pluginName>` (feature introduced in v6.51.0)

- v6.51.2 August 29, 2013
- Fixed certain pugin tests that require skeleton initialisation (regression from v6.52.0)
- When using `--global` flag we won't kill the global instance when starting a skeleton
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docpad",
"version": "6.51.2",
"version": "6.51.3",
"description": "DocPad is a next generation web architecture that lets you create fast static websites with dynamic abilities and powerful abstractions. Write your website as files on your computer, entries in a database, or even RSS feeds and DocPad will import it, generate & render it, then output a static website for deployment anywhere or a dynamic node website for advanced server-side functionality. Use it as a module or standalone. It's purely awesome. Check it out.",
"homepage": "https://github.com/bevry/docpad",
"installUrl": "http://docpad.org/install",
Expand Down
2 changes: 2 additions & 0 deletions src/lib/docpad.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2027,6 +2027,7 @@ class DocPad extends EventEmitterGrouped
names.forEach (name) ->
# Ensure latest if version isn't specfied
name += '@latest' if name.indexOf('@') is -1

# Push the name to the commands
command.push(name)

Expand Down Expand Up @@ -2068,6 +2069,7 @@ class DocPad extends EventEmitterGrouped

# Names
names = names.split(/[,\s]+/) unless typeChecker.isArray(names)
command.push(names...)

# Arguments
command.push(opts.args...)
Expand Down

0 comments on commit 83f23a2

Please sign in to comment.