mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
54eddb178c
When using the old webpack-dev-server with webpack 5+, we get bitten by webpack/webpack-dev-server#2692. This upgrades to 4.0.0-beta1 which also (unhelpfully) changes the config options. The `watchContentBase` and `watchOptions` don't seem to have analogs in the new versions, but I left them commented out for future reference. Also, this does not update `package-lock.json` because even just updating locally gave different output since I'm on a different version of node, I'm guessing.
6 lines
138 B
JavaScript
6 lines
138 B
JavaScript
import { apple2 as _apple2 } from './main2';
|
|
import * as UI from './ui/apple2';
|
|
|
|
export const Apple2 = UI;
|
|
export const apple2 = _apple2;
|