Skip to content

Commit

Permalink
fix: change the filename that webpack generates (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ziv authored and yairans committed May 28, 2017
1 parent 0d31b80 commit 06d1404
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dash-adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default class DashAdapter implements IMediaSourceAdapter {
}

/**
* Destroying the _msPlayer
* Destroying the dash adapter
* @function destroy
* @override
*/
Expand Down
4 changes: 3 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const path = require("path");

module.exports = {
context: __dirname + "/src",
entry: "shaka.js",
entry: {
"playkit-js-dash": "dash-adapter.js"
},
output: {
path: __dirname + "/dist",
filename: '[name].js'
Expand Down

0 comments on commit 06d1404

Please sign in to comment.