Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test to see if it works on other projects #7

Closed
TheBookKnight opened this issue Mar 9, 2025 · 4 comments · Fixed by #8
Closed

Test to see if it works on other projects #7

TheBookKnight opened this issue Mar 9, 2025 · 4 comments · Fixed by #8

Comments

@TheBookKnight
Copy link
Owner

Create a practice project and run npm install choose-your-adventure

@TheBookKnight
Copy link
Owner Author

Perhaps, make some more touch ups to ensure it works properly.

@TheBookKnight
Copy link
Owner Author

So, testing this locally, when I try importing GameEngine, it ended up looking like this

import { GameEngine } from "choose-your-adventure/src/game-engine";

So, some things I should do.

  1. I need the package.json's main to point to the entry file.
  2. I may need to create an entry file. Similar to terminal-kit's

@TheBookKnight
Copy link
Owner Author

So, I'll have to create an index file as the entry file like below

export { GameEngine } from './game-engine.js';
export { Chapter } from './chapter.js';
export { Scene } from './scene.js';
export { Game } from './game.js';

And have the package.json point to it.

@TheBookKnight TheBookKnight linked a pull request Mar 21, 2025 that will close this issue
1 task
@TheBookKnight
Copy link
Owner Author

It's working when I tested it locally!

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant