You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice there is no playground website for ts-pegjs. It would be great to have so people could play around with ts-pegjs to decide if it's the tool they need.
Is this repository the appropriate place for a playground? If so, there are a couple of options.
Change the repo to use npm workspaces. The typical thing to do would be to add a projects/ts-pegjs and projects/ts-pegjs-playground. Via some tsconfig.json magic, one can configure import ... "ts-pegjs" to import the local source instead of a global package. There would then be a package.json in the projects/ts-pegjs directory and one in the root directory marked "private": true. Only the projects/ts-pegjs workspace would be published on npm.
Add a playground directory and import via relative path ../src/... the necessary components.
Create a separate repository.
The text was updated successfully, but these errors were encountered:
We're talking about perhaps doing a separate repo for the peggy UI, if there's any interest in collaboration. We're talking about it in the #peggy-ui channel on Discord.
I notice there is no playground website for
ts-pegjs
. It would be great to have so people could play around withts-pegjs
to decide if it's the tool they need.Is this repository the appropriate place for a playground? If so, there are a couple of options.
projects/ts-pegjs
andprojects/ts-pegjs-playground
. Via some tsconfig.json magic, one can configureimport ... "ts-pegjs"
to import the local source instead of a global package. There would then be apackage.json
in theprojects/ts-pegjs
directory and one in the root directory marked"private": true
. Only theprojects/ts-pegjs
workspace would be published on npm.playground
directory and import via relative path../src/...
the necessary components.The text was updated successfully, but these errors were encountered: