Skip to content

Commit

Permalink
remove jquery dependency (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
devaradhanm authored and peterdur committed Mar 6, 2019
1 parent 1616c9f commit ea06b86
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
5 changes: 0 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
"applicationinsights-js": "^1.0.20",
"axe-core": "3.1.1",
"classnames": "^2.2.6",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"office-ui-fabric-react": "6.142.0",
"q": "1.0.1",
Expand Down
5 changes: 1 addition & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ const commonEntryFiles = {
insights: [path.resolve(__dirname, 'src/views/insights/initializer.ts')],
detailsView: [path.resolve(__dirname, 'src/DetailsView/details-view-initializer.ts')],
devtools: [path.resolve(__dirname, 'src/devtools/dev-tool-init.ts')],
background: [
'script-loader!' + path.resolve(__dirname, 'node_modules/jquery/dist/jquery.min.js'),
path.resolve(__dirname, 'src/background/background-init.ts'),
],
background: [path.resolve(__dirname, 'src/background/background-init.ts')],
};

const commonConfig = {
Expand Down

0 comments on commit ea06b86

Please sign in to comment.