@zohodesk/codestandard-validator 0.0.4-exp-2 → 0.0.4-exp-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.
- package/build/lib/postinstall.js +2 -1
- package/package.json +1 -1
package/build/lib/postinstall.js
CHANGED
|
@@ -32,7 +32,8 @@ const {
|
|
|
32
32
|
async function postInstall() {
|
|
33
33
|
try {
|
|
34
34
|
await executeMethodsThatReturnBooleanValue("Some issue in writing node_modules path to json", writeFsPaths, null);
|
|
35
|
-
|
|
35
|
+
// husky setup removed for already precommit hook setupped
|
|
36
|
+
// isGitInitialized() ? await executeMethodsThatReturnBooleanValue( "Some issue occurred in setting up husky.", setupHusky, null) : null;
|
|
36
37
|
await executeMethodsThatReturnBooleanValue("Make sure zgit.csez.zohocorpin.com is accessible", cloneViaCdt, null);
|
|
37
38
|
await executeMethodsThatReturnBooleanValue("Some issue occurred in creating eslint config file.", createEslintConfigFile, null);
|
|
38
39
|
Logger.log(Logger.SUCCESS_TYPE, "Pre commit setup successful");
|