@ts-dev-tools/core 1.5.12 → 1.5.16
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.
|
@@ -25,9 +25,7 @@ var PackageJsonMerge = /** @class */ (function () {
|
|
|
25
25
|
return update;
|
|
26
26
|
};
|
|
27
27
|
PackageJsonMerge.mergeObjects = function (source, update) {
|
|
28
|
-
var
|
|
29
|
-
for (var _i = 0, updateKeys_1 = updateKeys; _i < updateKeys_1.length; _i++) {
|
|
30
|
-
var updateKey = updateKeys_1[_i];
|
|
28
|
+
for (var updateKey in update) {
|
|
31
29
|
source[updateKey] = PackageJsonMerge.mergeValues(source[updateKey], update[updateKey]);
|
|
32
30
|
}
|
|
33
31
|
return source;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-dev-tools/core",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.16",
|
|
4
4
|
"description": "TS dev tools Core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"linter",
|
|
@@ -41,26 +41,26 @@
|
|
|
41
41
|
"url": "https://github.com/escemi-tech/ts-dev-tools/issues"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@commitlint/cli": "^16.0
|
|
44
|
+
"@commitlint/cli": "^16.1.0",
|
|
45
45
|
"@commitlint/config-conventional": "^16.0.0",
|
|
46
46
|
"@types/jest": "^27.4.0",
|
|
47
|
-
"@types/node": "^17.0.
|
|
48
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
49
|
-
"@typescript-eslint/parser": "^5.
|
|
50
|
-
"eslint": "^8.
|
|
47
|
+
"@types/node": "^17.0.17",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
49
|
+
"@typescript-eslint/parser": "^5.11.0",
|
|
50
|
+
"eslint": "^8.8.0",
|
|
51
51
|
"eslint-config-prettier": "^8.3.0",
|
|
52
52
|
"eslint-plugin-import": "^2.25.4",
|
|
53
|
-
"eslint-plugin-jest": "^
|
|
53
|
+
"eslint-plugin-jest": "^26.1.0",
|
|
54
54
|
"eslint-plugin-node": "^11.1.0",
|
|
55
55
|
"eslint-plugin-promise": "^6.0.0",
|
|
56
56
|
"import-sort-style-module": "^6.0.0",
|
|
57
|
-
"jest": "^27.
|
|
58
|
-
"lint-staged": "^12.
|
|
57
|
+
"jest": "^27.5.1",
|
|
58
|
+
"lint-staged": "^12.3.3",
|
|
59
59
|
"prettier": "^2.5.1",
|
|
60
60
|
"prettier-plugin-import-sort": "^0.0.7",
|
|
61
61
|
"pretty-quick": "^3.1.3",
|
|
62
|
-
"ts-jest": "^27.1.
|
|
63
|
-
"typescript": "^4.5.
|
|
62
|
+
"ts-jest": "^27.1.3",
|
|
63
|
+
"typescript": "^4.5.5"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"pinst": "^2.1.6"
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"**/?(*.)+(spec|test).+(ts|tsx|js)"
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "f73e2d6a1258236488be1f0bad378c1b5b81e7ee"
|
|
110
110
|
}
|