Skip to content

Commit 0f1c8d2

Browse files
committed
ignore .tools directory
1 parent 985f147 commit 0f1c8d2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
with:
2121
dotnet-version: 3.1.x
2222
- name: Install nbgv
23-
run: dotnet tool install nbgv --tool-path ./tools --version 3.3.37
23+
run: dotnet tool install nbgv --tool-path ./.tools --version 3.3.37
2424
- name: Run nbgv
25-
run: echo "NUGET_PACKAGE_VERSION=$(./tools/nbgv get-version -v NuGetPackageVersion)" >> $GITHUB_ENV
25+
run: echo "NUGET_PACKAGE_VERSION=$(./.tools/nbgv get-version -v NuGetPackageVersion)" >> $GITHUB_ENV
2626
- name: 🚀 Build
2727
run: |
2828
npm ci

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ node_modules
44
*.vsix
55
deps
66
*.nupkg
7-
.DS_Store
7+
.DS_Store
8+
.tools/

.vscodeignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
.github/**
12
.vscode/**
3+
.tools/**
4+
sample-workspaces/**
25
src/**
36
.gitignore
47
node_modules/**
58
**/tsconfig.json
69
**/*.map
710
**/*.ts
811
*.nupkg
9-
sample-workspace

0 commit comments

Comments
 (0)