sass-embedded 1.71.0-aarch64-linux-musl → 1.71.1-aarch64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 191f779873afa4a0b75dc8f6420749933beea5aa212597aca1a705ba75a5cfe2
4
- data.tar.gz: e7a839ee569f123d3698e82b3dbf43faf0dad9ae31216b5132b2e175f14b55d2
3
+ metadata.gz: 9e43a93dc7dc4eef48674f9bc89a504c58eb33c3e0e75c4f2148a35db53f3982
4
+ data.tar.gz: d48c4542ba48f9da107ab4da6fd1b4287189a5462f41aab0db8c6d66b09264da
5
5
  SHA512:
6
- metadata.gz: 82411b2043b594a58fafd43567ce848b1b897d0844e338cb7a41e0816706c346fa4676b4a7f9dc0a38bb51e75e0daa8ea0d0e2239b1f2a68d46c3f4160cde205
7
- data.tar.gz: 7abac2b269a60bed8c6da6f9de24f6f36422efff297a69857012b4fce52c7d1a1dc4a38ae6f77e03100ee3ae74e888c035131fc93c5303c98dd52c80138eb1ae
6
+ metadata.gz: 49f4cf815577e57dce780c143a36c7f80becf2f60e44a8d5bfe4de6be3006f7a2c6c583bbe9b685692e2380253579a1764801e7588529b6ff939a466ba34a98e
7
+ data.tar.gz: f0747cd5768d5694dfd6ed934dac5fecaa1278b2a2c82ad03fa780cddf7ae6891bf20115b8df7fb5a5b27957983da504646ed159e25ebf9160901a43f6575c13
Binary file
@@ -8,7 +8,7 @@ module Sass
8
8
  class CalculationOperation
9
9
  include CalculationValue
10
10
 
11
- OPERATORS = ['+', '-', '*', '/'].freeze
11
+ OPERATORS = %w[+ - * /].freeze
12
12
 
13
13
  private_constant :OPERATORS
14
14
 
@@ -4,7 +4,7 @@ module Sass
4
4
  class Compiler
5
5
  # The {Dispatcher} class.
6
6
  #
7
- # It dispatches messages between mutliple instances of {Host} and a single {Connection} to the compiler.
7
+ # It dispatches messages between multiple instances of {Host} and a single {Connection} to the compiler.
8
8
  class Dispatcher
9
9
  def initialize
10
10
  @id = 1
@@ -80,13 +80,13 @@ module Sass
80
80
  result.formatted == '' ? nil : result.formatted,
81
81
  result.stack_trace == '' ? nil : result.stack_trace,
82
82
  result.span.nil? ? nil : Logger::SourceSpan.new(result.span),
83
- compile_response.loaded_urls
83
+ compile_response.loaded_urls.to_a
84
84
  )
85
85
  when :success
86
86
  CompileResult.new(
87
87
  result.css,
88
88
  result.source_map == '' ? nil : result.source_map,
89
- compile_response.loaded_urls
89
+ compile_response.loaded_urls.to_a
90
90
  )
91
91
  else
92
92
  raise ArgumentError, "Unknown CompileResponse.result #{result}"
@@ -204,12 +204,12 @@ module Sass
204
204
 
205
205
  def send_message0(...)
206
206
  inbound_message = EmbeddedProtocol::InboundMessage.new(...)
207
- @stream.send_proto(0, inbound_message.to_proto)
207
+ @stream.send_proto(0, EmbeddedProtocol::InboundMessage.encode(inbound_message))
208
208
  end
209
209
 
210
210
  def send_message(...)
211
211
  inbound_message = EmbeddedProtocol::InboundMessage.new(...)
212
- @stream.send_proto(id, inbound_message.to_proto)
212
+ @stream.send_proto(id, EmbeddedProtocol::InboundMessage.encode(inbound_message))
213
213
  end
214
214
  end
215
215
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.71.0'
5
+ VERSION = '1.71.1'
6
6
  end
7
7
  end
@@ -4,6 +4,8 @@ module Sass
4
4
  # The built-in Node.js package importer. This loads pkg: URLs from node_modules
5
5
  # according to the standard Node.js resolution algorithm.
6
6
  #
7
+ # @param entry_point_directory [String] The directory where the {NodePackageImporter} should start when resolving
8
+ # `pkg:` URLs in sources other than files on disk.
7
9
  # @see https://sass-lang.com/documentation/js-api/classes/nodepackageimporter/
8
10
  class NodePackageImporter
9
11
  def initialize(entry_point_directory)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.71.0
4
+ version: 1.71.1
5
5
  platform: aarch64-linux-musl
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-16 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -88,8 +88,8 @@ licenses:
88
88
  - MIT
89
89
  metadata:
90
90
  bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
91
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.71.0
92
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.71.0
91
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.71.1
92
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.71.1
93
93
  funding_uri: https://github.com/sponsors/ntkme
94
94
  rubygems_mfa_required: 'true'
95
95
  post_install_message: