esbuild 0.1.0 → 0.1.1
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/.gitignore +1 -0
- data/lib/esbuild/build_state.rb +1 -1
- data/lib/esbuild/service.rb +1 -1
- data/lib/esbuild/version.rb +1 -1
- metadata +2 -3
- data/Gemfile.lock +0 -50
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff848d085934056a5983935b5aed9a877b264f74ca0f38b1412cafe49ee5eda2
|
|
4
|
+
data.tar.gz: 03c1246d911a9ce016aca7bb842303f58bc36082cd7ed53802531fbee307d7ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90d303fbea5bd5b67b3452b573bd3b9b6eed1770a01cd24ef203dd93d7ba532eab160595c09e41b485e291d331bb0a3993da06d05f9d98b285e9c6c356b35a84
|
|
7
|
+
data.tar.gz: 703a04218a31173f5800dffc3327eda2f3a84bacfd3c5c9f55e49d6c3a49d6e6bab3f98ccf8e9638e8bf8acd0c501724a6c8ebd10279f3dd2823a08667ab8004
|
data/.gitignore
CHANGED
data/lib/esbuild/build_state.rb
CHANGED
|
@@ -40,7 +40,7 @@ module Esbuild
|
|
|
40
40
|
|
|
41
41
|
def response_to_result(res)
|
|
42
42
|
unless res["errors"].empty?
|
|
43
|
-
raise BuildFailureError
|
|
43
|
+
raise BuildFailureError.new(res["errors"], res["warnings"])
|
|
44
44
|
end
|
|
45
45
|
if res["writeToStdout"]
|
|
46
46
|
$stdout.puts res["writeToStdout"].rstrip
|
data/lib/esbuild/service.rb
CHANGED
data/lib/esbuild/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: esbuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bouke van der Bijl
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|
|
@@ -77,7 +77,6 @@ files:
|
|
|
77
77
|
- ".github/workflows/main.yml"
|
|
78
78
|
- ".gitignore"
|
|
79
79
|
- Gemfile
|
|
80
|
-
- Gemfile.lock
|
|
81
80
|
- LICENSE.txt
|
|
82
81
|
- README.md
|
|
83
82
|
- Rakefile
|
data/Gemfile.lock
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
esbuild (0.1.0)
|
|
5
|
-
concurrent-ruby (~> 1.1.8)
|
|
6
|
-
rake (~> 13.0)
|
|
7
|
-
|
|
8
|
-
GEM
|
|
9
|
-
remote: https://rubygems.org/
|
|
10
|
-
specs:
|
|
11
|
-
ast (2.4.2)
|
|
12
|
-
concurrent-ruby (1.1.8)
|
|
13
|
-
minitest (5.14.4)
|
|
14
|
-
parallel (1.20.1)
|
|
15
|
-
parser (3.0.0.0)
|
|
16
|
-
ast (~> 2.4.1)
|
|
17
|
-
rainbow (3.0.0)
|
|
18
|
-
rake (13.0.3)
|
|
19
|
-
regexp_parser (2.1.1)
|
|
20
|
-
rexml (3.2.4)
|
|
21
|
-
rubocop (1.11.0)
|
|
22
|
-
parallel (~> 1.10)
|
|
23
|
-
parser (>= 3.0.0.0)
|
|
24
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
25
|
-
regexp_parser (>= 1.8, < 3.0)
|
|
26
|
-
rexml
|
|
27
|
-
rubocop-ast (>= 1.2.0, < 2.0)
|
|
28
|
-
ruby-progressbar (~> 1.7)
|
|
29
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
|
30
|
-
rubocop-ast (1.4.1)
|
|
31
|
-
parser (>= 2.7.1.5)
|
|
32
|
-
rubocop-performance (1.10.1)
|
|
33
|
-
rubocop (>= 0.90.0, < 2.0)
|
|
34
|
-
rubocop-ast (>= 0.4.0)
|
|
35
|
-
ruby-progressbar (1.11.0)
|
|
36
|
-
standard (1.0.4)
|
|
37
|
-
rubocop (= 1.11.0)
|
|
38
|
-
rubocop-performance (= 1.10.1)
|
|
39
|
-
unicode-display_width (2.0.0)
|
|
40
|
-
|
|
41
|
-
PLATFORMS
|
|
42
|
-
arm64-darwin-20
|
|
43
|
-
|
|
44
|
-
DEPENDENCIES
|
|
45
|
-
esbuild!
|
|
46
|
-
minitest (~> 5.14.4)
|
|
47
|
-
standard (~> 1.0.4)
|
|
48
|
-
|
|
49
|
-
BUNDLED WITH
|
|
50
|
-
2.2.15
|