@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 +6 -2
- package/dist/domain.js +11 -4
- package/package.json +3 -3
package/dist/board.js
CHANGED
package/dist/domain.js
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
|
11
|
+
this.#dayboard = new board_1.default();
|
|
6
12
|
}
|
|
7
13
|
get dayboard() {
|
|
8
14
|
return this.#dayboard;
|
|
9
15
|
}
|
|
10
16
|
}
|
|
11
|
-
|
|
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.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"
|
|
7
|
+
"prepublishOnly": "tsc"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [],
|
|
10
10
|
"author": "k4yr2",
|