@heuteapp/core 0.1.0 → 0.1.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/board.js CHANGED
@@ -1,3 +1,7 @@
1
- export class HeuteBoard {
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HeuteBoard = void 0;
4
+ class HeuteBoard {
2
5
  }
3
- export default HeuteBoard;
6
+ exports.HeuteBoard = HeuteBoard;
7
+ exports.default = HeuteBoard;
package/dist/domain.js CHANGED
@@ -1,11 +1,18 @@
1
- import HeuteBoard from "./board";
2
- export class HeuteDomain {
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.HeuteDomain = void 0;
7
+ const board_1 = __importDefault(require("./board"));
8
+ class HeuteDomain {
3
9
  #dayboard;
4
10
  constructor() {
5
- this.#dayboard = new HeuteBoard();
11
+ this.#dayboard = new board_1.default();
6
12
  }
7
13
  get dayboard() {
8
14
  return this.#dayboard;
9
15
  }
10
16
  }
11
- export default HeuteDomain;
17
+ exports.HeuteDomain = HeuteDomain;
18
+ exports.default = HeuteDomain;
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@heuteapp/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "",
5
- "main": "src/index.js",
5
+ "main": "dist/index.js",
6
6
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
7
+ "prepublishOnly": "tsc"
8
8
  },
9
9
  "keywords": [],
10
10
  "author": "k4yr2",