@lukaskj/xmonkey 2.0.2 → 2.0.3
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,8 +4,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
4
4
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
|
-
import { ConsoleScript } from "../decorators/console-script.decorator.js";
|
|
8
7
|
import { sleep } from "../utils/sleep.js";
|
|
8
|
+
import { ConsoleScript } from "@lukaskj/xmonkey";
|
|
9
9
|
let ExampleConsoleScript = class ExampleConsoleScript {
|
|
10
10
|
async execute() {
|
|
11
11
|
for (let i = 0; i < 50; i++) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukaskj/xmonkey",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"author": "lukaskj",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"scripts": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"*.{js,mjs,ts,tsx,jsx}": "eslint --fix"
|
|
70
70
|
},
|
|
71
71
|
"exports": {
|
|
72
|
-
".": "./dist
|
|
72
|
+
".": "./dist/index.js",
|
|
73
73
|
"./decorators": "./dist/decorators/*",
|
|
74
74
|
"./interfaces": "./dist/interfaces/*"
|
|
75
75
|
},
|
|
@@ -83,6 +83,5 @@
|
|
|
83
83
|
],
|
|
84
84
|
"bin": {
|
|
85
85
|
"xmonkey": "dist/build.js"
|
|
86
|
-
}
|
|
87
|
-
"type": "module"
|
|
86
|
+
}
|
|
88
87
|
}
|