Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide all docs #4

Merged
merged 1 commit into from
Oct 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion can-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ exports.logLevel = 0;

/**
* @module {{}} can-log log
* @parent can-log
* @parent can-infrastructure
* @hide
*
* Utilities for logging to the console.
*/
Expand Down Expand Up @@ -45,6 +46,7 @@ exports.warn = function(out) {
* @parent can-log
* @description
* Adds a message to the console.
* @hide
*
* ```
* var canLog = require("can-log");
Expand Down Expand Up @@ -72,6 +74,7 @@ exports.log = function(out) {
* @parent can-log
* @description
* Adds an error message to the console.
* @hide
*
* ```
* var canLog = require("can-log");
Expand Down
7 changes: 6 additions & 1 deletion dev/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ var canLog = require("../can-log");
/**
* @module {{}} can-log/dev dev
* @parent can-log
*
* @hide
*
* Utilities for logging development-mode messages. Use this module for
* anything that should be shown to the user during development but isn't
* needed in production. In production these functions become noops.
Expand All @@ -17,6 +18,7 @@ module.exports = {
* @function can-log/dev.stringify stringify
* @parent can-log
* @description
* @hide
*
* JSON stringifies a value, but unlike JSON, will output properties with
* a value of `undefined` (e.g. `{ "prop": undefined }`, not `{}`).
Expand Down Expand Up @@ -45,6 +47,7 @@ module.exports = {
* @function can-log/dev.warn warn
* @parent can-log
* @description
* @hide
*
* Adds a warning message to the console.
*
Expand All @@ -66,6 +69,7 @@ module.exports = {
* @function can-log/dev.log log
* @parent can-log
* @description
* @hide
*
* Adds a message to the console.
*
Expand All @@ -87,6 +91,7 @@ module.exports = {
* @function can-log/dev.error error
* @parent can-log
* @description
* @hide
*
* Adds an error message to the console.
*
Expand Down