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
We're in the process of deprecating the CLI's compile command in favor of the build command, for more details see: #702.
As such, the compile command is considered to be frozen and is only guaranteed to be compatible with the javy_quickjs_provider_v2 provider module, therefore the compile should use the v2 provider instead of the latest available one. This not causing any issues at the moment, but it could cause potential issues in case a new version is released in which incompatible QuickJS bytecode is emitted.
The proposed solution is to use the v2 provider, available in-tree when the compile command is invoked.
The text was updated successfully, but these errors were encountered:
Closesbytecodealliance#766
This commit ensures that the soon-to-be-deprecated `compile` command
makes use of the right (v2) provider for compilation. Not ensuring this
has the potential to cause issues upon a new release of QuickJS
containing bytecode incompatibilities.
* Use the v2 provider for `compile`
Closes#766
This commit ensures that the soon-to-be-deprecated `compile` command
makes use of the right (v2) provider for compilation. Not ensuring this
has the potential to cause issues upon a new release of QuickJS
containing bytecode incompatibilities.
* Rename param
We're in the process of deprecating the CLI's
compile
command in favor of thebuild
command, for more details see: #702.As such, the
compile
command is considered to be frozen and is only guaranteed to be compatible with thejavy_quickjs_provider_v2
provider module, therefore thecompile
should use thev2
provider instead of the latest available one. This not causing any issues at the moment, but it could cause potential issues in case a new version is released in which incompatible QuickJS bytecode is emitted.The proposed solution is to use the v2 provider, available in-tree when the
compile
command is invoked.The text was updated successfully, but these errors were encountered: