@maioradv/nestjs-core 1.1.1 → 1.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.
@@ -1,4 +1,4 @@
1
- export default class Slugger {
1
+ export declare class Slugger {
2
2
  private readonly word;
3
3
  private unique;
4
4
  constructor(word: string);
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Slugger = void 0;
3
4
  class Slugger {
4
5
  constructor(word) {
5
6
  this.word = word;
@@ -20,4 +21,4 @@ class Slugger {
20
21
  return result;
21
22
  }
22
23
  }
23
- exports.default = Slugger;
24
+ exports.Slugger = Slugger;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="node" />
2
- export default class StorageHelper {
2
+ export declare class StorageHelper {
3
3
  rootPath: string;
4
4
  read(path: string): Promise<string | Buffer>;
5
5
  write(path: string, data: string): Promise<void>;
@@ -23,6 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.StorageHelper = void 0;
26
27
  const fs = __importStar(require("fs"));
27
28
  const util_1 = require("util");
28
29
  const path_1 = require("path");
@@ -60,4 +61,4 @@ class StorageHelper {
60
61
  fs.mkdirSync(dirPath, { recursive: true });
61
62
  }
62
63
  }
63
- exports.default = StorageHelper;
64
+ exports.StorageHelper = StorageHelper;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maioradv/nestjs-core",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "NestJS helpers by MaiorADV",
5
5
  "repository": "https://github.com/maioradv/nestjs-core.git",
6
6
  "author": "Maior ADV Srl",