homura-runtime 0.3.26 → 0.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/homura/runtime/version.rb +1 -1
- data/lib/literal/opal_compat.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8668dcae5fa94a983e370b955deb9edd0097dbb7e45a5e26bc99b341932c0bfa
|
|
4
|
+
data.tar.gz: 917dc45767af13bae754edd069a31aef660a0a046b058e2fcda432cbdf0a0dec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89471504331d0df3f6f4d5a460ce395e4521f7650144adae338f9b2d80c633747c3a2fe62470259e1cecee08e826e32818d56b22e7414b7320b4fd781f5e2674
|
|
7
|
+
data.tar.gz: 55be72d59bd35cbb959df41f91e4e56705d5e959c04a157166ac0a1e5c8693bfa1fab810c3d7223cdfb1271ab662b56f2349bccc9c7071e11c502a5de228951c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.27 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
- Load `literal/types` before individual Literal type classes in the Opal
|
|
6
|
+
compatibility layer, so `Literal::Types` exists before the type files attach
|
|
7
|
+
constants to it.
|
|
8
|
+
|
|
3
9
|
## 0.3.26 (2026-06-25)
|
|
4
10
|
|
|
5
11
|
- Explicitly load the Literal type modules needed by component props under
|
data/lib/literal/opal_compat.rb
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
require "zeitwerk/opal_compat"
|
|
4
4
|
require "literal" unless defined?(Literal)
|
|
5
5
|
require "literal/type"
|
|
6
|
+
require "literal/types"
|
|
6
7
|
require "literal/types/any_type"
|
|
7
8
|
require "literal/types/array_type"
|
|
8
9
|
require "literal/types/boolean_type"
|
|
@@ -10,7 +11,6 @@ require "literal/types/constraint_type"
|
|
|
10
11
|
require "literal/types/nilable_type"
|
|
11
12
|
require "literal/types/union_type"
|
|
12
13
|
require "literal/types/void_type"
|
|
13
|
-
require "literal/types"
|
|
14
14
|
|
|
15
15
|
module Literal
|
|
16
16
|
class OpalBuffer
|