sprockets-esbuild 0.0.1-x64-mingw32 → 0.0.2-x64-mingw32

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: 956c419099365cfbc676bf57d3404edde072871d1de81326896419691c1393f0
4
- data.tar.gz: 608dc9458c55e4e61f94c0bbd7ce35becded6441669e28669f73a9d07566afd6
3
+ metadata.gz: 667c35f9b00c78e64e088fcd15e956bf15e69b03b9ff06223fcec861fd5ec3bd
4
+ data.tar.gz: d3eca485d349e8e94b834e5010b2ac62d9f9bd26971c55817de83b35b276155c
5
5
  SHA512:
6
- metadata.gz: 3e7244cbd3c451d06e7bbdb5145fe247cc38aff3954941cb4a371d57b635299ffc42f8e58c34dd801b86b1d0ebb6df77302e89de7ef3ca7c5499fb2b9ff21c3f
7
- data.tar.gz: 2ef3ef44050ae5c96a0420ad9946f6429c2679ed998416ff99312debb3c88b8a9d9f68d092a28f0733f92840c88d5e32e5ade0bd3b875f7a08932ea4603b6c2c
6
+ metadata.gz: 323c1332b5a5fa0ac80a708a5c71dce4105e98bfbed4a82c3717841b8af3a88447070c56a73bb5bca39df4ebb2676f8cc15917af2d26eff2eba4b0b297781dba
7
+ data.tar.gz: f0b6aa640928fe68777e3ebc38a19e656f0af97e5cc0f1c617543a19a74d956eae300a27dcfa770388ecdd548252b93aa9f0efc4aedba7a9e22808cc63f41e6b
data/exe/esbuild CHANGED
@@ -1,19 +1,37 @@
1
1
  #! /usr/bin/env ruby
2
2
  # because rubygems shims assume a gem's executables are Ruby
3
3
 
4
- require "shellwords"
4
+ require "sprockets-esbuild/upstream"
5
5
 
6
- platform_dir = Dir.glob(File.join(__dir__, "*")).select do |f|
7
- File.directory?(f) && Gem::Platform.match(File.basename(f))
8
- end.first
9
- if platform_dir.nil?
10
- raise "Cannot find the esbuild executable in #{__dir__} (1)"
6
+ supported_platforms = SprocketsEsbuild::Upstream::NATIVE_PLATFORMS.keys
7
+ platform = [:cpu, :os].map { |m| Gem::Platform.local.send(m) }.join("-")
8
+
9
+ if supported_platforms.none? { |supported_platform| Gem::Platform.match(supported_platform) }
10
+ STDERR.puts(<<~ERRMSG)
11
+ ERROR: sprockets-esbuild does not support the #{platform} platform
12
+ ERRMSG
13
+ exit 1
14
+ end
15
+
16
+ exe_path = Dir.glob(File.join(__dir__, "*", "esbuild")).find do |f|
17
+ Gem::Platform.match(File.basename(File.dirname(f)))
11
18
  end
19
+ if exe_path.nil?
20
+ STDERR.puts(<<~ERRMSG)
21
+ ERROR: Cannot find the esbuild executable for #{platform} in #{__dir__}
22
+ If you're using bundler, please make sure you're on the latest bundler version:
23
+
24
+ gem install bundler
25
+ bundle update --bundler
26
+
27
+ Then make sure your lock file includes this platform by running:
28
+
29
+ bundle lock --add-platform #{platform}
30
+ bundle install
12
31
 
13
- exe_path = File.join(platform_dir, "esbuild")
14
- if !File.exist?(exe_path)
15
- raise "Cannot find the esbuild executable in #{__dir__} (2)"
32
+ See `bundle lock --help` output for details.
33
+ ERRMSG
34
+ exit 1
16
35
  end
17
36
 
18
- command = Shellwords.join([exe_path, ARGV].flatten)
19
- exec(command)
37
+ system exe_path, *ARGV
Binary file
@@ -0,0 +1,14 @@
1
+ module SprocketsEsbuild
2
+ # constants describing the upstream esbuild project
3
+ module Upstream
4
+ VERSION = "0.14.5"
5
+
6
+ # rubygems platform name => [upstream release tarball name, tarball path]
7
+ NATIVE_PLATFORMS = {
8
+ "arm64-darwin" => ["esbuild-darwin-arm64", "package/bin/esbuild"],
9
+ "x64-mingw32" => ["esbuild-windows-64", "package/esbuild.exe"],
10
+ "x86_64-darwin" => ["esbuild-darwin-64", "package/bin/esbuild"],
11
+ "x86_64-linux" => ["esbuild-linux-64", "package/bin/esbuild"],
12
+ }
13
+ end
14
+ end
@@ -1,3 +1,3 @@
1
1
  module SprocketsEsbuild
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,2 +1,6 @@
1
+ module SprocketsEsbuild
2
+ end
3
+
4
+ require 'sprockets-esbuild/upstream'
1
5
  require 'sprockets-esbuild/version'
2
6
  require 'sprockets-esbuild/transformers'
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprockets-esbuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Sam Ruby
8
+ - Mike Dalessio
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2021-12-19 00:00:00.000000000 Z
12
+ date: 2021-12-26 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: sprockets
@@ -38,12 +39,13 @@ files:
38
39
  - exe/x64-mingw32/esbuild
39
40
  - lib/sprockets-esbuild.rb
40
41
  - lib/sprockets-esbuild/transformers.rb
42
+ - lib/sprockets-esbuild/upstream.rb
41
43
  - lib/sprockets-esbuild/version.rb
42
- homepage: https://github.com/rails/tailwindcss-rails
44
+ homepage: https://github.com/rubys/sprockets-esbuild
43
45
  licenses:
44
46
  - MIT
45
47
  metadata:
46
- homepage_uri: https://github.com/rails/tailwindcss-rails
48
+ homepage_uri: https://github.com/rubys/sprockets-esbuild
47
49
  post_install_message:
48
50
  rdoc_options: []
49
51
  require_paths: