Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
zbentley committed Nov 26, 2016
1 parent 703d27f commit 2f54592
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classeur-api-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class ClasseurClient {
functionUtils.restOrArrayAndCallback(function(array, cb) {
async.map(
array,
(item, mcb) => { p(item); this.getFile(item, mcb) },
(item, mcb) => { this.getFile(item, mcb) },
functionUtils.scrubArrayCallback(cb, true, array.length)
)
}, this)(...arguments)
Expand Down
7 changes: 6 additions & 1 deletion doc/generator/VersionIndex.md.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Each link below will take you to the README for the given package version:
- [0.2.3](<%- path %>versions/0.2.3/index.html)
- [0.3.0](<%- path %>versions/0.3.0/index.html)
- [0.3.1](<%- path %>versions/0.3.1/index.html)
- [0.3.2](<%- path %>versions/0.3.2/index.html)
- [0.3.3](<%- path %>versions/0.3.3/index.html)
- [development/unstable (master)](<%- path %>versions/master/index.html)

# Release Notes
Expand Down Expand Up @@ -70,4 +72,7 @@ Each link below will take you to the README for the given package version:
- Improved documentation builder/auto publisher.

### 0.3.2
- Added back the ability to get content of files (gradual deprecation of the V1 API broke it; using parts of the V2 API now). See GitHub issue #3 for more info.
- Added back the ability to get content of files (gradual deprecation of the V1 API broke it; using parts of the V2 API now). See GitHub issue #3 for more info.

### 0.3.3
- Removal of a debug print statement.
2 changes: 1 addition & 1 deletion doc/tutorials/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To get everything in sync with NPM and GitHub, do the following (I'll automate a
1. Code and test new release.
- Be sure to remove or comment out uses of `eyes.js`, e.g. by searching for and commenting `require('eyes')`.
- Be sure to revert any user API keys checked into the test assets in `test/asset/private`. The `addchanges.command` script can help with that.
2. Tag release with npm: `npm release major|minor|patch`.
2. Tag release with npm: `npm version major|minor|patch`.
3. Build, check and publish `master` documentation.
4. Build, check and publish `current-version` documentation.
5. Check out the pages branch (`git checkout gh-pages; git pull`) and update the symlink in `versions/latest` to point to the latest release. Push your changes.
Expand Down

0 comments on commit 2f54592

Please sign in to comment.