exupery-core-dev 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,6 +7,7 @@ exports.log_debug_message = log_debug_message;
|
|
|
7
7
|
* before publishing, the usages should be removed
|
|
8
8
|
* @param message the string to be printed to stdout
|
|
9
9
|
*/
|
|
10
|
-
function log_debug_message(message) {
|
|
10
|
+
function log_debug_message(message, handler) {
|
|
11
11
|
console.log("DEBUG", message);
|
|
12
|
+
return handler();
|
|
12
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exupery-core-dev",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"description": "a exupery package that contains functions that are useful during development",
|
|
6
6
|
"author": "Corno",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"url": "git+https://github.com/corno/exupery-core.git"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"exupery-core-internals": "^0.1.
|
|
27
|
+
"exupery-core-internals": "^0.1.7"
|
|
28
28
|
}
|
|
29
29
|
}
|