Skip to content

Commit

Permalink
Separate webapp & webextension dist folders
Browse files Browse the repository at this point in the history
  • Loading branch information
AXeL-dev committed Aug 13, 2020
1 parent ecaffc0 commit ef849c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/firestore-manager",
"outputPath": "dist/firestore-manager/webapp",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
Expand Down Expand Up @@ -73,7 +73,7 @@
"build-webextension": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/firestore-manager",
"outputPath": "dist/firestore-manager/webextension",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"ng": "ng",
"start": "ng serve",
"build": "ng run firestore-manager:build-webextension --configuration=production",
"package": "web-ext build --source-dir=dist/firestore-manager --artifacts-dir=.",
"package": "web-ext build --source-dir=dist/firestore-manager/webextension --artifacts-dir=.",
"build:github": "ng build --prod --base-href \"/firestore-manager/\"",
"deploy:github": "ngh --dir=dist/firestore-manager",
"deploy:github": "ngh --dir=dist/firestore-manager/webapp",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
Expand Down

0 comments on commit ef849c9

Please sign in to comment.