svelte-on-rails 22.5.1 → 22.5.2
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/lib/tasks/ssr_client_tasks.rake +3 -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: e508b30c7a40e2274cacc0a291fe40b54ad33b13bcb2e1fc7851db51102392d8
|
|
4
|
+
data.tar.gz: 6baa52304e5f6269e38557015f9ae3d1d24447904bea9749afeff23099d97529
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e059fb08261304ce5941788ebb9261f0919044e730a38f6c381e756c5707dc838b6376dd75f0edd7216b8bf420a710fc67927b05c19fbfff9a3e66cc226bd449
|
|
7
|
+
data.tar.gz: 76c5ca5ebb681524b04be2d87e88d477db6af12537a382a230cb423042ec36da722e484c7536646f87f065a2bff1ca13f1f976cec8f030b3e6037fd20c2d42ea
|
|
@@ -97,7 +97,9 @@ namespace :svelte_on_rails do
|
|
|
97
97
|
path = SvelteOnRails::SsrClientControlChannel.socket_path.to_path
|
|
98
98
|
unless File.socket?(path)
|
|
99
99
|
puts "*" * @line_width
|
|
100
|
-
puts "ERROR: Control socket not found at #{path}
|
|
100
|
+
puts "ERROR: Control socket not found at #{path}"
|
|
101
|
+
puts " • Is Rails running?"
|
|
102
|
+
puts " • Are you in the correct Rails environment (You have: #{Rails.env})?"
|
|
101
103
|
puts "*" * @line_width
|
|
102
104
|
return
|
|
103
105
|
end
|