Skip to content

Commit

Permalink
fix/ electron builder output directories #200
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegris committed Aug 19, 2018
1 parent 0da3856 commit f4535e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/tmp
/out-tsc
/app-builds
/release
main.js

# dependencies
Expand Down
2 changes: 1 addition & 1 deletion electron-builder.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "angular-electron",
"directories": {
"output": "app-builds"
"output": "release/"
},
"files": [
"**/*",
Expand Down
2 changes: 1 addition & 1 deletion src/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"src/test.ts",
"**/*.spec.ts",
"dist",
"app-builds",
"release",
"node_modules"
]
}
2 changes: 1 addition & 1 deletion src/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"exclude": [
"dist",
"app-builds",
"release",
"node_modules"
]
}

0 comments on commit f4535e5

Please sign in to comment.