@shopify/cli-kit 3.55.2 → 3.55.4

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.
@@ -1,5 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ module Warning
4
+ def self.warn(string)
5
+ super if ENV["DEBUG"]
6
+ end
7
+ end
8
+
3
9
  module Kernel
4
10
  # make an alias of the original require
5
11
  alias_method :original_require, :require
@@ -8,8 +14,9 @@ module Kernel
8
14
  def require(name)
9
15
  original_require(name)
10
16
  rescue LoadError => e
11
- # Special case for readline.so, which fails harmlessly on Windows
12
- raise if (name == "readline.so") && ShopifyCLI::Context.new.windows?
17
+ # Special case for readline, which may fail on Windows and always raises a
18
+ # LoadError from Ruby 3.3.0.
19
+ raise if name == "readline.#{RbConfig::CONFIG["DLEXT"]}"
13
20
  # Special case for psych (yaml), which rescues this itself
14
21
  raise if name == "#{RUBY_VERSION[/\d+\.\d+/]}/psych.so"
15
22
  # Special case for ffi, which rescues this itself
@@ -1 +1 @@
1
- export declare const CLI_KIT_VERSION = "3.55.2";
1
+ export declare const CLI_KIT_VERSION = "3.55.4";
@@ -1,2 +1,2 @@
1
- export const CLI_KIT_VERSION = '3.55.2';
1
+ export const CLI_KIT_VERSION = '3.55.4';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/public/common/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,eAAe,GAAG,QAAQ,CAAA","sourcesContent":["export const CLI_KIT_VERSION = '3.55.2'\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/public/common/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,eAAe,GAAG,QAAQ,CAAA","sourcesContent":["export const CLI_KIT_VERSION = '3.55.4'\n"]}