Set default stable version for import #67
nbbaier
started this conversation in
Feature Request
Replies: 1 comment
-
You could copy @saolsen's technique described here and make your active development live on export { default } from "https://esm.town/v/nbbaier/sqlite_studio_dev?v=37";
export { default as dev } from "https://esm.town/v/nbbaier/sqlite_studio_dev";
export { default as stable } from "https://esm.town/v/nbbaier/sqlite_studio_dev?v=37";
export { default as v2 } from "https://esm.town/v/nbbaier/sqlite_studio_dev?v=20"; In effect you could have the "main val" contain all the tags you care about! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
@RLesser noticed that my hacking away on my SQLite Studio had caused his import of val to start glitching. I managed to rectify this by specifying a "stable version" in the readme, but it would be really nice to have a more official way to do this.
I like Robert's suggestion of specifying a default stable version that automatically imports. The issue I see with this is that it requires some way of notifying users to upgrade to the latest version.
Another option I just thought of would be allowing a
?v=stable
param that defaults to the set stable version.Related to #44
Beta Was this translation helpful? Give feedback.
All reactions