pronto-stylelint 0.10.2 → 0.10.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed4f93468ad34cfbe7b933ad8497795430601b76461387cd3b412bc1c4080fe8
4
- data.tar.gz: e6c413926171309786afa3d750eccc47217355dd9503661b2de78f66c5c71669
3
+ metadata.gz: e5ad38e5da7c10bbef01da03be23e6ead8c5431b1b65c541ebde43c8674163c0
4
+ data.tar.gz: a4202206e230e6bd161afa0484fb89f00e324c6bc8fa154174293008ed9ca97a
5
5
  SHA512:
6
- metadata.gz: 1b54dca362245ca45d139415afeed46d9a3d5c325ee9217e8f0fb61c1ecc267e7aa1ded98e962cc15c6c02cff4b903ad8560cc3d5bba534cf14bef8b799c35a4
7
- data.tar.gz: 9c9583201f8a43ae48b4ec8135d20696b0d22ff54ee6c869b8e48c28c7f45b422b74eeaf23d72b29b04f54f39b5e5edaa6e7316da390e211d40ef5a72f35893d
6
+ metadata.gz: 778c62a73c78c2774029a74b68c774258bd16d3504861970a1b79c98f11150c1a01bd3eee1bc6b504e933307aac151e9599ec784af9b24e9a25efd6933bf189b
7
+ data.tar.gz: 138b5c5af183660f358106edbe24b9e4bc62e0767c34255750fb06b8388449d06e328eb9b3db9789ef11c834d4e0c770d3f134c8cc3d071456bd6aa00cad0756
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module StylelintVersion
3
- VERSION = '0.10.2'.freeze
3
+ VERSION = '0.10.3'.freeze
4
4
  end
5
5
  end
@@ -1,5 +1,6 @@
1
1
  require 'pronto'
2
2
  require 'shellwords'
3
+ require 'open3'
3
4
 
4
5
  module Pronto
5
6
  class Stylelint < Runner
@@ -81,9 +82,16 @@ module Pronto
81
82
  def run_stylelint(patch)
82
83
  Dir.chdir(git_repo_path) do
83
84
  escaped_file_path = Shellwords.escape(patch.new_file_full_path.to_s)
84
- JSON.parse(
85
- `#{stylelint_executable} #{escaped_file_path} #{cli_options}`
86
- )
85
+ Open3.popen3("#{stylelint_executable} #{escaped_file_path} #{cli_options}") do |_stdin, stdout, stderr, thread|
86
+ status = thread.value
87
+ json = stdout.read
88
+ if status.to_i == 0 && json.length == 0
89
+ []
90
+ else
91
+ json = stderr.read if json.length == 0
92
+ JSON.parse(json)
93
+ end
94
+ end
87
95
  end
88
96
  end
89
97
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-stylelint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Jalbert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-24 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  version: '0'
111
111
  requirements:
112
112
  - stylelint (in PATH)
113
- rubygems_version: 3.1.4
113
+ rubygems_version: 3.3.3
114
114
  signing_key:
115
115
  specification_version: 4
116
116
  summary: Pronto runner for stylelint, the mighty, modern CSS linter.