Skip to content

Commit 055effd

Browse files
Merge pull request #13 from dataiku/chore/dss12-sc-153184-plugin-template-exclude-dist-and-idea-from
Remove dist and .idea from the dev build
2 parents 1f60d84 + 33780bc commit 055effd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,3 +230,5 @@ gradle-app.setting
230230
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
231231
# gradle/wrapper/gradle-wrapper.properties
232232
.vscode/settings.json
233+
234+
.idea/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dev: dist-clean
2424
@echo "[START] Archiving plugin to dist/ folder... (dev mode)"
2525
@cat plugin.json | json_pp > /dev/null
2626
@mkdir dist
27-
@zip -v -9 dist/${archive_file_name} -r . --exclude "tests/*" "env/*" ".git/*" ".pytest_cache/*"
27+
@zip -v -9 dist/${archive_file_name} -r . --exclude "tests/*" "env/*" ".git/*" ".pytest_cache/*" ".idea/*" "dist/*"
2828
@echo "[SUCCESS] Archiving plugin to dist/ folder: Done!"
2929

3030
unit-tests:

0 commit comments

Comments
 (0)