@aneuhold/core-ts-lib 1.1.27 → 1.1.28

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,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = sleep;
3
4
  /**
4
5
  * Sleeps for the given amount of milliseconds, and resolves once finished.
5
6
  *
@@ -8,4 +9,3 @@ Object.defineProperty(exports, "__esModule", { value: true });
8
9
  function sleep(ms) {
9
10
  return new Promise((resolve) => setTimeout(resolve, ms));
10
11
  }
11
- exports.default = sleep;
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@aneuhold/core-ts-lib",
3
- "version": "1.1.27",
3
+ "version": "1.1.28",
4
4
  "description": "A core library for all of my TypeScript projects",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
- "packageManager": "yarn@4.2.2",
7
+ "packageManager": "yarn@4.3.1",
8
8
  "scripts": {
9
9
  "pushpub": "yarn build && npm version patch && git push",
10
10
  "build": "tsc",
@@ -36,12 +36,12 @@
36
36
  "devDependencies": {
37
37
  "@aneuhold/eslint-config": "^1.0.16",
38
38
  "@types/jest": "^29.5.12",
39
- "@types/node": "^20.14.2",
39
+ "@types/node": "^20.14.9",
40
40
  "eslint": "^9.5.0",
41
41
  "jest": "^29.7.0",
42
42
  "prettier": "^3.3.2",
43
- "ts-jest": "^29.1.4",
43
+ "ts-jest": "^29.1.5",
44
44
  "ts-node": "^10.9.2",
45
- "typescript": "^5.4.5"
45
+ "typescript": "^5.5.2"
46
46
  }
47
47
  }