@aneuhold/be-ts-lib 1.0.6 → 1.0.8
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.
|
@@ -148,7 +148,7 @@ class CLIService {
|
|
|
148
148
|
const spawnedCmd = (0, child_process_1.spawn)(cmd, args, execOptions);
|
|
149
149
|
spawnedCmd.on('error', (err) => {
|
|
150
150
|
core_ts_lib_1.Logger.error(`There was an error executing the "spawn" function. Details are printed below:
|
|
151
|
-
${err}`);
|
|
151
|
+
${err.message}`);
|
|
152
152
|
resolve({
|
|
153
153
|
didComplete: false,
|
|
154
154
|
output: err.toString()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DockerService.d.ts","sourceRoot":"","sources":["../../../src/services/applications/DockerService.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DockerService.d.ts","sourceRoot":"","sources":["../../../src/services/applications/DockerService.ts"],"names":[],"mappings":"AACA,OAAmB,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAGzE;;;GAGG;AACH,MAAM,CAAC,OAAO,OAAO,aAAa;IAChC;;;OAGG;WACU,kBAAkB;WAgBlB,6BAA6B,IAAI,OAAO,CAAC,OAAO,CAAC;IAe9D;;;;;OAKG;IACH,MAAM,CAAC,aAAa,CAAC,EAAE,EAAE,mBAAmB,GAAG,MAAM,GAAG,IAAI;CAS7D"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aneuhold/be-ts-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A backend TypeScript library used for common functionality in personal backend projects.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
7
7
|
"author": "Anton G Neuhold Jr <agneuhold@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"packageManager": "yarn@4.2.2",
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
11
12
|
"url": "git+https://github.com/aneuhold/be-ts-lib.git"
|
|
@@ -22,34 +23,30 @@
|
|
|
22
23
|
"Node.js"
|
|
23
24
|
],
|
|
24
25
|
"scripts": {
|
|
25
|
-
"pushpub": "
|
|
26
|
+
"pushpub": "yarn build && npm version patch && git push",
|
|
26
27
|
"build": "tsc",
|
|
27
28
|
"watch": "tsc -w",
|
|
28
29
|
"link:local": "cd lib && yarn link",
|
|
29
30
|
"unlink:local": "cd lib && yarn unlink",
|
|
30
31
|
"upgrade:all": "yarn upgrade --latest",
|
|
31
32
|
"upgrade:core": "yarn upgrade --latest --pattern @aneuhold",
|
|
32
|
-
"test": "jest"
|
|
33
|
+
"test": "jest",
|
|
34
|
+
"lint": "eslint"
|
|
33
35
|
},
|
|
34
36
|
"dependencies": {
|
|
35
|
-
"@aneuhold/core-ts-api-lib": "^1.0.
|
|
36
|
-
"@aneuhold/core-ts-lib": "^1.1.
|
|
37
|
+
"@aneuhold/core-ts-api-lib": "^1.0.51",
|
|
38
|
+
"@aneuhold/core-ts-lib": "^1.1.15",
|
|
37
39
|
"dotenv": "^16.3.1",
|
|
38
40
|
"jsonc-parser": "^3.2.0",
|
|
39
41
|
"node-fetch": "^2",
|
|
40
42
|
"octokit": "^3.1.2"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
45
|
+
"@aneuhold/eslint-config": "^1.0.6",
|
|
43
46
|
"@types/jest": "^29.5.8",
|
|
44
47
|
"@types/node": "^20.10.4",
|
|
45
48
|
"@types/node-fetch": "^2.6.9",
|
|
46
|
-
"
|
|
47
|
-
"@typescript-eslint/parser": "^6.14.0",
|
|
48
|
-
"eslint": "^8.35.0",
|
|
49
|
-
"eslint-config-airbnb-base": "^15.0.0",
|
|
50
|
-
"eslint-config-prettier": "^9.1.0",
|
|
51
|
-
"eslint-plugin-import": "^2.22.1",
|
|
52
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
49
|
+
"eslint": "^9.3.0",
|
|
53
50
|
"jest": "^29.7.0",
|
|
54
51
|
"prettier": "^3.1.1",
|
|
55
52
|
"ts-jest": "^29.1.1",
|