Jimmy Bourassa
Jimmy Bourassa
As of writing, pluralization keys have no requirements – as long as they're present, the linter won't complete. `theme-lint` has a rule to enforce `other` in the default locale: https://github.com/Shopify/theme-lint/blob/239d40432ad20e50f1e7e90bd618e58cdfe09690/linters/i18n.js#L199-L201...
Given the following classes: ```ruby class A < AR::Base has_many :bs, inverse: :a cache_has_many(:bs, embed: true) end class B < AR::Base belongs_to :a, inverse: :bs has_one :c cache_has_one(:c, embed: true)...
Hi, Is there a reason packages are not created with the variant's dimensions ([see this code](https://github.com/spree/spree_active_shipping/blob/master/app/models/spree/calculator/active_shipping/base.rb#L128))? I'm thinking of implementing it but I'd like to have some background on the...
Addresses #176: - [x] Remove entries from CI matrix - [x] Update docs 💭 I think I got all the docs, at least according to my `rg`-fu in this repo....
As of writing, pluralization keys have no requirements – as long as they're present, the linter won't complete. `theme-lint` has a rule to enforce `other` in the default locale: https://github.com/Shopify/theme-lint/blob/239d40432ad20e50f1e7e90bd618e58cdfe09690/linters/i18n.js#L199-L201...
Add host functions for components. Wasmtime has 2 APIs for adding host functions to components: 1. The typed API (e.g. [`func_wrap`](https://docs.wasmtime.dev/api/wasmtime/component/struct.LinkerInstance.html#method.func_wrap)) which requires the signature be known at compile time....
Add support for component resources. Until host functions are supported (#433), only guest-provided component resources are relevant.
Add support for WASI p2. TODOs (potentially incomplete): - [x] Replace `wasi_common` crate with `wasmtime_wasi` - Requires rebuilding deterministic context, hopefully it should be trivial. - [ ] Ensure deterministic...