Skip to content

Commit

Permalink
Merge pull request #17 from Tre-dagens/betterquery
Browse files Browse the repository at this point in the history
Betterquery
  • Loading branch information
PatrikOlin authored Jan 20, 2021
2 parents 5f6d95a + 02dd7d0 commit 46c76b5
Show file tree
Hide file tree
Showing 49 changed files with 1,897 additions and 720 deletions.
23 changes: 9 additions & 14 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"options": {
"customWebpackConfig": {
"path": "./custom-webpack.config.js"
},
},
"outputPath": "dist/untappdbolaget",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -26,10 +26,11 @@
"src/favicon.ico",
"src/assets",
"src/manifest.json",
"src/contentscript.js"
],
"styles": [
"src/styles.css",
"node_modules/material-design-icons/iconfont/material-icons.css",
"node_modules/material-design-icons/iconfont/material-icons.css"
],
"scripts": []
},
Expand Down Expand Up @@ -66,7 +67,7 @@
"maximumError": "10kb"
}
]
},
}
}
},
"serve": {
Expand All @@ -93,13 +94,8 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"assets": ["src/favicon.ico", "src/assets", "src/contentscript.js"],
"styles": ["src/styles.css"],
"scripts": []
}
},
Expand All @@ -111,9 +107,7 @@
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
"exclude": ["**/node_modules/**"]
}
},
"e2e": {
Expand All @@ -129,6 +123,7 @@
}
}
}
}},
}
},
"defaultProject": "untappdbolaget"
}
7 changes: 5 additions & 2 deletions custom-webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module.exports = {
entry: {background: 'src/background.ts'},
}
entry: {
background: "src/background.ts",
contentscript: "src/contentscript.js",
},
};
Loading

0 comments on commit 46c76b5

Please sign in to comment.