Bullet hell through dawn and dusk. Made during Global Game Jam 2022.
[email protected]:Golen87/TwilightWings.git
cd TwilightWings
yarn
Run these commands to clean up the directory
# Cleans up the build and dist folders
yarn clean
# Cleans up the builds, build cache, and node modules
yarn superclean
Run these commands to build and run the web app
# Webpack serves the code at localhost:8080
$ yarn serve
# Webpack bundles the code into a minimized product build
$ yarn public
Run these commands to build and run the Electron app
# Parcel bundles the code
$ yarn build
# Parcel bundles the code and watches for changes
$ yarn watch
# Run the electron app
$ yarn app
# Run the electron app with options for a debugger to attach to the render process
$ yarn debug
Run this command to bundle code in production mode
# Create windows executables
$ yarn windows
# Create mac executables
$ yarn mac
# Create linux executables
$ yarn linux