pareto-core-dev 0.12.11 → 0.12.12

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.
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.implement_me = implement_me;
7
- const get_location_info_1 = __importDefault(require("../get_location_info"));
7
+ const get_location_info_1 = __importDefault(require("./private/get_location_info"));
8
8
  /**
9
9
  * use this function as a placeholder when you want to compile but have not fully developed all functionality yet.
10
10
  *
@@ -14,5 +14,7 @@ const get_location_info_1 = __importDefault(require("../get_location_info"));
14
14
  */
15
15
  function implement_me(marker) {
16
16
  const location = (0, get_location_info_1.default)(1);
17
- throw new Error(`IMPLEMENT ME ${marker ? `: '${marker}'` : ''} @ ${location['document resource identifier']}:${location.line}:${location.column}`);
17
+ throw new Error(`IMPLEMENT ME ${marker
18
+ ? `: '${marker}'`
19
+ : ''} @ ${location['document resource identifier']}:${location.line}:${location.column}`);
18
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core-dev",
3
- "version": "0.12.11",
3
+ "version": "0.12.12",
4
4
  "license": "ISC",
5
5
  "description": "a pareto package that contains functions that are useful during development",
6
6
  "author": "Corno",
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from "./public/implement_me";
2
- export * from "./public/log_debug_message";
3
- export * from "./public/log_wrapping_debug_messages";
package/dist/index.js DELETED
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./public/implement_me"), exports);
18
- __exportStar(require("./public/log_debug_message"), exports);
19
- __exportStar(require("./public/log_wrapping_debug_messages"), exports);