diff options
| author | Simen A. W. Olsen <so@bjerk.io> | 2021-09-01 09:45:48 +0200 |
|---|---|---|
| committer | Simen A. W. Olsen <so@bjerk.io> | 2021-09-01 09:45:48 +0200 |
| commit | 97f060c6a62c87b0815a3edbdcf975ca87d482f5 (patch) | |
| tree | ea9afe00b5c3a369096c75091c27629b9c4e3cb8 | |
| parent | 987002ce6dae4bbfeac58b1c7b2e1604f35caece (diff) | |
| download | dotfiles-97f060c6a62c87b0815a3edbdcf975ca87d482f5.tar.gz dotfiles-97f060c6a62c87b0815a3edbdcf975ca87d482f5.zip | |
add npm utils
| -rw-r--r-- | .github/dependabot.yml | 6 | ||||
| -rw-r--r-- | .path | 5 | ||||
| -rw-r--r-- | .utilities/package.json | 10 |
3 files changed, 20 insertions, 1 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6c40e56 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/.utilities' + schedule: + interval: 'monthly'
\ No newline at end of file @@ -5,6 +5,9 @@ export GOPATH=~/go export REPOS=~/ghq +# NPM Utilities +export PATH="$PATH:$HOME/.utilities/node_modules/.bin" + # Golang export PATH="$PATH:$GOPATH/bin" @@ -22,4 +25,4 @@ source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/compl if [ -f "$HOME/.netlify/helper/path.zsh.inc" ]; then source "$HOME/.netlify/helper/path.zsh.inc"; fi # Add VSCode to PATH -export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
\ No newline at end of file +export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" diff --git a/.utilities/package.json b/.utilities/package.json new file mode 100644 index 0000000..4e5dd26 --- /dev/null +++ b/.utilities/package.json @@ -0,0 +1,10 @@ +{ + "name": "dotfiles", + "version": "1.0.0", + "main": "index.js", + "author": "Simen A. W. Olsen", + "license": "Apache-2.0", + "dependencies": { + "gcloud-config-select": "^1.0.0" + } +} |
