Skip to content

Commit

Permalink
Merge pull request #109 from Avivbens/support-ts-prune
Browse files Browse the repository at this point in the history
fix: add `ts-prune` package 🥷
  • Loading branch information
Avivbens authored Dec 18, 2024
2 parents 9d55012 + 742541a commit 4eea0d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/commands/install/config/apps-groups/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,18 @@ export const NODE_APPS: Readonly<IAppSetup[]> = [
name: 'DPDM',
description: 'A robust static dependency analyzer for your JavaScript and TypeScript projects',
group: 'node',
tags: ['web-engineering'],
tags: ['node-engineering', 'web-engineering'],
openUrl: () => NPM_HOME('dpdm'),
commands: () => [NODE_GLOBAL('dpdm')],
},
{
name: 'TS Prune',
description: 'Find potentially unused exports in your Typescript project with zero configuration',
group: 'node',
tags: ['node-engineering', 'web-engineering'],
openUrl: () => NPM_HOME('ts-prune'),
commands: () => [NODE_GLOBAL('ts-prune')],
},
{
name: 'verdaccio',
group: 'node',
Expand Down
3 changes: 3 additions & 0 deletions zsh/extends/.zshrc.extends.git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ alias gf="git fetch"
alias gr="git rebase"
alias gunlast="git reset --soft HEAD~1"

alias gss="git stash"
alias gsp="git stash pop"

# setup less to fit with git log, in order to search and see the hash of the commit
# set the number of padding lines to 15
export LESS="-FXRSj15"
Expand Down

0 comments on commit 4eea0d4

Please sign in to comment.