@naturalcycles/nodejs-lib 12.68.0 → 12.68.1

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.
package/dist/index.d.ts CHANGED
@@ -9,6 +9,7 @@ import { GetGotOptions } from './got/got.model';
9
9
  export * from './infra/process.util';
10
10
  import { Debug, IDebug, IDebugger } from './log/debug';
11
11
  export * from './security/hash.util';
12
+ export * from './security/crypto.util';
12
13
  export * from './security/id.util';
13
14
  export * from './security/secret.util';
14
15
  export * from './colors/colors';
package/dist/index.js CHANGED
@@ -16,6 +16,7 @@ tslib_1.__exportStar(require("./infra/process.util"), exports);
16
16
  const debug_1 = require("./log/debug");
17
17
  Object.defineProperty(exports, "Debug", { enumerable: true, get: function () { return debug_1.Debug; } });
18
18
  tslib_1.__exportStar(require("./security/hash.util"), exports);
19
+ tslib_1.__exportStar(require("./security/crypto.util"), exports);
19
20
  tslib_1.__exportStar(require("./security/id.util"), exports);
20
21
  tslib_1.__exportStar(require("./security/secret.util"), exports);
21
22
  tslib_1.__exportStar(require("./colors/colors"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/nodejs-lib",
3
- "version": "12.68.0",
3
+ "version": "12.68.1",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "docs-serve": "vuepress dev docs",
package/src/index.ts CHANGED
@@ -9,6 +9,7 @@ import { GetGotOptions } from './got/got.model'
9
9
  export * from './infra/process.util'
10
10
  import { Debug, IDebug, IDebugger } from './log/debug'
11
11
  export * from './security/hash.util'
12
+ export * from './security/crypto.util'
12
13
  export * from './security/id.util'
13
14
  export * from './security/secret.util'
14
15
  export * from './colors/colors'