Skip to content

Commit 165c8eb

Browse files
committedApr 27, 2024·
Cleanup gitignore and update makefile
1 parent caa1d55 commit 165c8eb

File tree

4 files changed

+7
-27
lines changed

4 files changed

+7
-27
lines changed
 

‎.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
TODO
2-
rails_panel.zip
1+
.vscode

‎extension/.gitignore

+2-23
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,4 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
pnpm-debug.log*
8-
lerna-debug.log*
9-
101
.vite
11-
node_modules
122
dist
13-
dist-ssr
14-
*.local
15-
16-
# Editor directories and files
17-
.vscode/*
18-
!.vscode/extensions.json
19-
.idea
20-
.DS_Store
21-
*.suo
22-
*.ntvs*
23-
*.njsproj
24-
*.sln
25-
*.sw?
3+
node_modules
4+
build/*.zip

‎extension/Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
.PHONY: build clean
2+
13
build:
2-
zip -r0 rails_panel.zip dist
4+
zip -r0 build/rails_panel.zip dist
35
clean:
4-
rm rails_panel.zip
6+
rm build/*

‎extension/build/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.