sprockets-esbuild 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/esbuild +8 -1
- data/lib/sprockets-esbuild/transformers.rb +34 -10
- data/lib/sprockets-esbuild/upstream.rb +1 -1
- data/lib/sprockets-esbuild/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d20f7c95a2fc77139827ac99da09e09496210cd0407248588b8b677fc5b8dae7
|
4
|
+
data.tar.gz: 4e317ebdb0ee6f02f31ac6e5ffb110131debe72c92667826af2c599da75821fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c1d4f2f6bc6bfb9e69f2addb1d10bdeb30a9988040bf9ad5ae0410052bdee95b43f69c6069f702bc60028849eec283bd2ad72353515d5fcfe561750efef1fec
|
7
|
+
data.tar.gz: 0474ff1a41a5b4015e7098fac2b2b5518fe78141f8e9a3d513d834386def603180607d392c274154a1c54a47bb1e73358f76ef5f94a1765b69b8347de9de0ec0
|
data/exe/esbuild
CHANGED
@@ -34,4 +34,11 @@ if exe_path.nil?
|
|
34
34
|
exit 1
|
35
35
|
end
|
36
36
|
|
37
|
-
|
37
|
+
if Gem.win_platform?
|
38
|
+
# use system rather than exec as exec inexplicably fails to find the executable
|
39
|
+
# on Windows
|
40
|
+
system exe_path, *ARGV
|
41
|
+
else
|
42
|
+
# use exec rather than system to avoid creating a new process
|
43
|
+
exec exe_path, *ARGV
|
44
|
+
end
|
@@ -3,13 +3,21 @@
|
|
3
3
|
|
4
4
|
require 'open3'
|
5
5
|
require 'sprockets'
|
6
|
+
require 'sprockets/source_map_utils'
|
7
|
+
require 'json'
|
8
|
+
require 'base64'
|
9
|
+
require 'pathname'
|
6
10
|
|
7
11
|
module SprocketsEsbuild
|
8
12
|
|
9
13
|
class TransformerBase
|
10
14
|
include Sprockets
|
11
15
|
|
12
|
-
ESBUILD = File.expand_path('../../exe/esbuild', __dir__)
|
16
|
+
ESBUILD = [File.expand_path('../../exe/esbuild', __dir__)]
|
17
|
+
|
18
|
+
# As windows doesn't support she-bang syntax in scripts, prepend Ruby to
|
19
|
+
# the command
|
20
|
+
ESBUILD.unshift RbConfig.ruby if Gem.win_platform?
|
13
21
|
|
14
22
|
def cache_key
|
15
23
|
@cache_key ||= "#{self.class.name}::#{VERSION}".freeze
|
@@ -20,15 +28,31 @@ module SprocketsEsbuild
|
|
20
28
|
|
21
29
|
input[:cache].fetch([cache_key, data]) do
|
22
30
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
31
|
+
out, err, status = Open3.capture3(*ESBUILD, '--sourcemap',
|
32
|
+
"--sourcefile=#{input[:filename]}", "--loader=#{loader}",
|
33
|
+
stdin_data: input[:data])
|
34
|
+
|
35
|
+
match = out.match %r{^//# sourceMappingURL=data:application/json;base64,(.*)\s*}
|
36
|
+
|
37
|
+
if match
|
38
|
+
# extract sourcemap from output and then format and combine it
|
39
|
+
out[match.begin(0)..match.end(0)] = ''
|
40
|
+
map = JSON.parse(Base64.decode64(match[1]))
|
41
|
+
map = SourceMapUtils.format_source_map(map, input)
|
42
|
+
map = SourceMapUtils.combine_source_maps(input[:metadata][:map], map)
|
43
|
+
else
|
44
|
+
map = nil
|
45
|
+
end
|
46
|
+
|
47
|
+
if status.success? and err.empty?
|
48
|
+
if map
|
49
|
+
{ data: out, map: map }
|
50
|
+
else
|
51
|
+
out
|
52
|
+
end
|
53
|
+
else
|
54
|
+
raise Error, "esbuild exit status=#{status.exitstatus}\n#{err}"
|
55
|
+
end
|
32
56
|
end
|
33
57
|
end
|
34
58
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprockets-esbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Ruby
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-10-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sprockets
|
@@ -59,7 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
61
|
requirements: []
|
62
|
-
rubygems_version: 3.
|
62
|
+
rubygems_version: 3.4.8
|
63
63
|
signing_key:
|
64
64
|
specification_version: 4
|
65
65
|
summary: Transpile JSX, TS, and TSX files with esbuild.
|