Skip to content

Commit

Permalink
chore(deps): bump expose-loader to v1 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock authored Aug 10, 2024
1 parent e3ef49a commit 8ccc6db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion thunorweb/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"bootstrap-loader": "^4.0.0",
"compression-webpack-plugin": "^6.1.1",
"css-loader": "^2.1.0",
"expose-loader": "^0.7.5",
"expose-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.12.0",
"file-loader": "^3.0.1",
"ignore-unchanged-webpack-plugin": "^1.0.3",
Expand Down
10 changes: 5 additions & 5 deletions thunorweb/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ var config = {

entry: {
favicons: glob.sync("./thunor/favicons/*"),
app: ["expose-loader?pyHTS!./thunor/js/pyhts",
app: ["expose-loader?exposes=pyHTS!./thunor/js/pyhts",
"./thunor/css/fonts.css",
"./thunor/css/pyhts.css"],

//TODO: Compile more modules from source, removing unneeded components
plots: ["expose-loader?Plotly!./plotly"],
sentry: ["expose-loader?Sentry!@sentry/browser"],
vendor: ["expose-loader?jQuery!expose-loader?$!jquery", // sitewide
plots: ["expose-loader?exposes=Plotly!./plotly"],
sentry: ["expose-loader?exposes=Sentry!@sentry/browser"],
vendor: ["expose-loader?exposes=jQuery!expose-loader?exposes=$!jquery", // sitewide
// "bootstrap/dist/js/bootstrap",
// "bootstrap/dist/css/bootstrap.css",
"bootstrap-loader",
Expand All @@ -31,7 +31,7 @@ var config = {
"bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.css",

// file downloads
"expose-loader?FileSaver!file-saver",
"expose-loader?exposes=FileSaver!file-saver",

// TSV parser
"d3-dsv",
Expand Down

0 comments on commit 8ccc6db

Please sign in to comment.