@sitecore-content-sdk/cli 1.1.0-canary.4 → 1.1.0-canary.41

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.
@@ -36,5 +36,7 @@ function handler(argv) {
36
36
  yield command();
37
37
  }
38
38
  }
39
+ // Exit the process to avoid hanging the process by custom build commands
40
+ process.exit(0);
39
41
  });
40
42
  }
@@ -29,5 +29,7 @@ export function handler(argv) {
29
29
  yield command();
30
30
  }
31
31
  }
32
+ // Exit the process to avoid hanging the process by custom build commands
33
+ process.exit(0);
32
34
  });
33
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitecore-content-sdk/cli",
3
- "version": "1.1.0-canary.4",
3
+ "version": "1.1.0-canary.41",
4
4
  "description": "Sitecore Content SDK CLI",
5
5
  "main": "dist/cjs/cli.js",
6
6
  "module": "dist/esm/cli.js",
@@ -34,7 +34,7 @@
34
34
  "url": "https://github.com/sitecore/content-sdk/issues"
35
35
  },
36
36
  "dependencies": {
37
- "@sitecore-content-sdk/core": "1.1.0-canary.4",
37
+ "@sitecore-content-sdk/core": "1.1.0-canary.41",
38
38
  "chokidar": "^4.0.3",
39
39
  "dotenv": "^16.5.0",
40
40
  "dotenv-expand": "^12.0.2",
@@ -44,6 +44,7 @@
44
44
  "yargs": "^17.7.2"
45
45
  },
46
46
  "devDependencies": {
47
+ "@stylistic/eslint-plugin": "^5.2.2",
47
48
  "@types/chai": "^5.2.2",
48
49
  "@types/mocha": "^10.0.10",
49
50
  "@types/node": "^22.15.13",
@@ -51,17 +52,24 @@
51
52
  "@types/sinon": "^17.0.4",
52
53
  "@types/tmp": "^0.2.6",
53
54
  "@types/yargs": "^17.0.33",
55
+ "@typescript-eslint/eslint-plugin": "8.39.0",
56
+ "@typescript-eslint/parser": "8.39.0",
54
57
  "chai": "^4.4.1",
55
58
  "del-cli": "^6.0.0",
56
- "eslint": "^8.56.0",
59
+ "eslint": "^9.32.0",
60
+ "eslint-config-prettier": "^10.1.8",
61
+ "eslint-plugin-import": "2.32.0",
62
+ "eslint-plugin-jsdoc": "52.0.3",
63
+ "eslint-plugin-prettier": "^4.0.0",
57
64
  "mocha": "^11.2.2",
58
65
  "nyc": "^17.1.0",
66
+ "prettier": "^2.8.0",
59
67
  "proxyquire": "^2.1.3",
60
68
  "sinon": "^20.0.0",
61
69
  "ts-node": "^10.9.1",
62
70
  "typescript": "~5.8.3"
63
71
  },
64
- "gitHead": "837fdff8471141addb780faad49de15e3daf7595",
72
+ "gitHead": "8625c9edc10c7cdde19a023a26bdb88261f72b1f",
65
73
  "files": [
66
74
  "dist",
67
75
  "types"