nijikokun / sugarcube-starter

Easy to use starter kit for creating stories with Tweego, Twine and SugarCube.
16 stars 3 forks source link

.build/tweego_Installer.js not found due to case sensitive filesystem on Linux #3

Closed gnoumph closed 2 years ago

gnoumph commented 2 years ago

Hello,

npm start fails on Linux (and probably MacOS) because tweego_Installer.js is imported from .build/build_command.js but filename is tweego_installer.js.

Easy fix, replace line 9 in .build/build_command.js with:

import { Installer } from "./tweego_installer.js";