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
The extension could store the installed version of the extension along side the yaml server. On startup it could check if the active and installed versions are different, and only if different do an npm install.
This could reduce startup time of the extension and improve overall performance.
Thoughts
It could piggyback on the package.json version to save creating another file, the extension could put the version in there when copying the file. That would require it to read, parse and modify the JSON rather than just straight copy it.
Alternatively, it could create a installed_version file and use that for the check
The text was updated successfully, but these errors were encountered:
The extension could store the installed version of the extension along side the yaml server. On startup it could check if the active and installed versions are different, and only if different do an
npm install
.This could reduce startup time of the extension and improve overall performance.
Thoughts
It could piggyback on the
package.json
version to save creating another file, the extension could put the version in there when copying the file. That would require it to read, parse and modify the JSON rather than just straight copy it.Alternatively, it could create a
installed_version
file and use that for the checkThe text was updated successfully, but these errors were encountered: