We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecefbe1 commit f203849Copy full SHA for f203849
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "git-wiz",
3
- "version": "1.2.2",
+ "version": "1.3.0",
4
"author": {
5
"email": "[email protected]",
6
"name": "Mosh Feu",
src/utils/wiz.ts
@@ -28,7 +28,7 @@ export const reset = withErrorHandler(async () => {
28
});
29
30
export const stash = withErrorHandler(async () => {
31
- const status = await gitStatus();
+ const status = (await gitStatus()).filter(file => !file.deleted);
32
if (!status.length) {
33
console.log('\x1b[33m', 'Stash what exactly 🤥?');
34
return;
0 commit comments