sassc-embedded 1.77.7 → 1.77.8

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: 4a5084e30e04703dd21157b4dd3bf32abee7f789e939056a033bc4ddb4c2b1a2
4
- data.tar.gz: eb1f8e6e1ce7ea90364fccbd4241fb5ccb677ae29a11ed385ec8c1bec068ae85
3
+ metadata.gz: ed83a573f2e0ee97ab41239e66a4d9c3dadda78bc65ea225bee52328262da7eb
4
+ data.tar.gz: a703e807594f9917770f1bdd4bc1465f0331821654d3acd2eac852ba75d3ec9e
5
5
  SHA512:
6
- metadata.gz: 0a1bc6dc872c8cb0ebec80c1cc4d7550b62445515a3e6eca3d510094aadc0c48ce8d213ad5b31934501150b3f771efcdc931560befb87b8c827f74a0cb80fe4e
7
- data.tar.gz: d9012320b9955c2aea7012bd11d0874dbf3b68ff807e6b7b5f395b22e7b8e4bbc75f48c38c9618fd2da669fd093193c61c257afd0eebc1507cba5a2ab792a0a4
6
+ metadata.gz: 4069b55f1d3a8c1566f1e5c2d7e483bec93e0c197309b506a6f8ed9861de8a0b80fa23c1bb4349545c89b6d4042c13667124a7e3f61ffe4433f296667ce78db9
7
+ data.tar.gz: bd2d69e4dce53262c4933203cd119cb5fcdef0743ca5127ef6228e4fd933575cd7afe9c6a4bf4ba9a522501cf60a312a51ba1c74e4195b76b07543218bbadee0
data/README.md CHANGED
@@ -54,17 +54,38 @@ require 'sassc-embedded'
54
54
  SassC::Engine.new(sass, style: :compressed).render
55
55
  ```
56
56
 
57
- See [rubydoc.info/gems/sassc](https://rubydoc.info/gems/sassc) for full API documentation.
58
-
59
- ## Behavioral Differences from SassC Ruby
60
-
61
- 1. Option `:style => :nested` and `:style => :compact` behave as `:style => :expanded`.
62
-
63
- 2. Option `:precision` is ignored.
64
-
65
- 3. Option `:line_comments` is ignored.
66
-
67
- See [the dart-sass documentation](https://github.com/sass/dart-sass#behavioral-differences-from-ruby-sass) for other differences.
57
+ Most of the original `sassc` options are supported with no behavior difference unless noted otherwise:
58
+
59
+ - `:filename`
60
+ - `:quiet`
61
+ - ~~`:precision`~~ - ignored
62
+ - ~~`:line_comments`~~ - ignored
63
+ - `:syntax`
64
+ - `:source_map_embed`
65
+ - `:source_map_contents`
66
+ - `:omit_source_map_url`
67
+ - `:source_map_file`
68
+ - `:importer`
69
+ - `:functions`
70
+ - `:style` - ~~`:nested`~~ and ~~`:compact`~~ behave as `:expanded`
71
+ - `:load_paths`
72
+
73
+ See [`sassc-ruby` source code](https://github.com/sass/sassc-ruby/blob/master/lib/sassc/engine.rb) and [`libsass` documentation](https://github.com/sass/libsass/blob/master/docs/api-context.md) for details.
74
+
75
+ Additional `sass-embedded` options are supported:
76
+
77
+ - `:charset`
78
+ - `:importers`
79
+ - `:alert_ascii`
80
+ - `:alert_color`
81
+ - `:fatal_deprecations`
82
+ - `:future_deprecations`
83
+ - `:logger`
84
+ - `:quiet_deps`
85
+ - `:silence_deprecations`
86
+ - `:verbose`
87
+
88
+ See [`sass-embedded` documentation](https://rubydoc.info/gems/sass-embedded/Sass#compile_string-class_method) for details.
68
89
 
69
90
  ## Troubleshooting
70
91
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module SassC
4
4
  module Embedded
5
- VERSION = '1.77.7'
5
+ VERSION = '1.77.8'
6
6
  end
7
7
  end
@@ -34,7 +34,7 @@ module SassC
34
34
  alert_color: @options.fetch(:alert_color, nil),
35
35
  fatal_deprecations: @options.fetch(:fatal_deprecations, []),
36
36
  future_deprecations: @options.fetch(:future_deprecations, []),
37
- logger: @options.fetch(:logger, nil),
37
+ logger: quiet? ? ::Sass::Logger.silent : @options.fetch(:logger, nil),
38
38
  quiet_deps: @options.fetch(:quiet_deps, false),
39
39
  silence_deprecations: @options.fetch(:silence_deprecations, []),
40
40
  verbose: @options.fetch(:verbose, false)
@@ -43,8 +43,6 @@ module SassC
43
43
  @loaded_urls = result.loaded_urls
44
44
  @source_map = result.source_map
45
45
 
46
- return if quiet?
47
-
48
46
  css = result.css
49
47
  css += "\n" unless css.empty?
50
48
  unless @source_map.nil? || omit_source_map_url?
@@ -328,9 +326,7 @@ module SassC
328
326
  return
329
327
  end
330
328
  else
331
- imports = @importer.imports(path, parent_path)
332
- imports = [SassC::Importer::Import.new(path)] if imports.nil?
333
- imports = [imports] unless imports.is_a?(Array)
329
+ imports = [*@importer.imports(path, parent_path)]
334
330
  canonical_url = imports_to_native(imports, parent_dir, context.from_import, url, containing_url)
335
331
  unless @importer_results.key?(canonical_url)
336
332
  @file_url = canonical_url
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sassc-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.7
4
+ version: 1.77.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-07 00:00:00.000000000 Z
11
+ date: 2024-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass-embedded
@@ -79,7 +79,7 @@ licenses:
79
79
  metadata:
80
80
  bug_tracker_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/issues
81
81
  documentation_uri: https://rubydoc.info/gems/sassc
82
- source_code_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/tree/v1.77.7
82
+ source_code_uri: https://github.com/sass-contrib/sassc-embedded-shim-ruby/tree/v1.77.8
83
83
  funding_uri: https://github.com/sponsors/ntkme
84
84
  rubygems_mfa_required: 'true'
85
85
  post_install_message: