File tree 4 files changed +38
-5
lines changed
4 files changed +38
-5
lines changed Original file line number Diff line number Diff line change
1
+ dist
2
+
3
+ # Common in both .gitignore and .npmignore
1
4
node_modules
2
5
package-lock.json
3
- pnpm-lock.yaml
4
6
yarn.lock
7
+ pnpm-lock.yaml
5
8
.DS_Store
6
9
* .log
7
10
* .tmp
Original file line number Diff line number Diff line change 1
- pg-id-consts.sql
2
- tsconfig.tsbuildinfo
3
- .github
1
+ dist /__tests__
2
+ dist /** /__tests__
3
+ dist /tsconfig.tsbuildinfo
4
+ .npmrc
4
5
6
+ # Common in both .gitignore and .npmignore
5
7
node_modules
6
8
package-lock.json
7
- pnpm-lock.yaml
8
9
yarn.lock
10
+ pnpm-lock.yaml
9
11
.DS_Store
10
12
* .log
11
13
* .tmp
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [
3
+ " dbaeumer.vscode-eslint" ,
4
+ " esbenp.prettier-vscode" ,
5
+ " mhutchie.git-graph" ,
6
+ " trentrand.git-rebase-shortcuts"
7
+ ]
8
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " git grok: push local commits as individual PRs" ,
6
+ "detail" : " Install git-grok first: https://github.com/dimikot/git-grok" ,
7
+ "type" : " shell" ,
8
+ "command" : " git grok" ,
9
+ "problemMatcher" : [],
10
+ "hide" : false
11
+ },
12
+ {
13
+ "label" : " git rebase --interactive" ,
14
+ "detail" : " Opens a UI for interactive rebase (install \" Git rebase shortcuts\" extension)." ,
15
+ "type" : " shell" ,
16
+ "command" : " GIT_EDITOR=\" code --wait\" git rebase -i" ,
17
+ "problemMatcher" : []
18
+ }
19
+ ]
20
+ }
You can’t perform that action at this time.
0 commit comments