Introduce new parcel-based world order

Webpack was entirely and utterly unmaintainable. This commit throws it
out of the window into the gutter where it belongs, and rewrites the
entire repository so that it may work with parcel instead.
This commit is contained in:
Tristan Daniël Maat 2020-02-20 00:48:12 +09:00
parent 849168606f
commit 1b0aab1713
Signed by: tlater
GPG key ID: 49670FD774E43268
34 changed files with 3966 additions and 14075 deletions
src/music/player

View file

@ -0,0 +1,15 @@
import $ from "jquery";
import AudioManager from "./audio_manager";
import Controls from "./controls";
import Display from "./display";
class Player {
constructor(src="https://tlater.net/assets/Mseq_-_Journey.mp3") {
this._ui = $("#playerUI");
this._audioManager = new AudioManager(src);
this._controls = new Controls(this._audioManager);
this._display = new Display(this._audioManager);
}
}
export default Player;