From ea4963adfc0290522e82b5fd791e6c2fdf33924a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Mon, 27 Apr 2015 12:19:23 +0300 Subject: [PATCH] Fixed #4. Fixed the syntax error. --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 42d2de3..b188bdd 100644 --- a/lib/index.js +++ b/lib/index.js @@ -97,7 +97,7 @@ function CdnJsImporter (options, callback) { * @param {Object|String} lib The git url as string or an object containing: * - `git` (String): The `git` url. * - `dir` (String): The directory containing the files which should be imported (default: `"/dist"` or `"/build"` or `"/src"` or `"/"`). - * - `map` (Array): The file map used by cdnjs in autoupdate process (default: `[{ basePath: lib.dir , files: ["**/*"] }]`). + * - `map` (Array): The file map used by cdnjs in autoupdate process (default: `[{ basePath: lib.dir , files: ["**\/*"] }]`). * @param {Function} callback The callback function called with `error` and `data`. * @return {CdnJsImporter} The `CdnJsImporter` instance. */