Skip to content

Commit

Permalink
publish: v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh887 committed Dec 25, 2022
1 parent 93b2294 commit 58f0fc5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "depextract",
"version": "1.1.1",
"version": "1.1.2",
"description": "Dependency extractor CLI script for package.json",
"type": "module",
"repository": {
Expand All @@ -13,9 +13,10 @@
},
"bin": "./index.js",
"keywords": [
"CLI",
"cli",
"tool",
"npx"
"npx",
"package.json"
],
"author": "Ashutosh Jha",
"license": "ISC",
Expand Down
8 changes: 4 additions & 4 deletions src/extractors.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ export const extractCurrent = async () => {
}
});

console.log(chalk.green("Production script generation: Successful ✅"));
console.log(chalk.green("dependency script generation: Successful ✅"));
} else {
console.log(
chalk.red(
"Production script generation: Unsuccessful (no dependency found) ❌"
"dependency script generation: Unsuccessful (no dependency found) ❌"
)
);
}
Expand All @@ -61,11 +61,11 @@ export const extractCurrent = async () => {
throw new Error("Can't write to file");
}
});
console.log(chalk.green("Development script generation: Successful ✅"));
console.log(chalk.green("devDependency script generation: Successful ✅"));
} else {
console.log(
chalk.red(
"Development script generation: Unsuccessful (no devDependency found) ❌"
"devDependency script generation: Unsuccessful (no devDependency found) ❌"
)
);
}
Expand Down

0 comments on commit 58f0fc5

Please sign in to comment.