sprockets-esbuild 0.0.1-x86_64-darwin → 0.0.2-x86_64-darwin

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: 8e3670f95dbcbe1ebee9b2ff73847e888cd3c52b83147646dba20e7c8247d3d7
4
- data.tar.gz: 4e525c3261d1fc3aa87a04a398fd893370348fcc2884e896568769e5a8615bdc
3
+ metadata.gz: '0897478d60f06b930e27a2a909aa3e7218f1d05adfb29a4ef68009ae4a51d114'
4
+ data.tar.gz: 0ede245d0f38c7d277ed16f1ef5c111d3fc5d802c6a38a56c44053e96afa1b7b
5
5
  SHA512:
6
- metadata.gz: 0f8e2a464c12b2d161dd35628639d53b0ac99ba58ccd7456daaebaec8741277710df78e91c14e66e9305de3981b236e5370d0418a5d1b40fede19192c1ff3b91
7
- data.tar.gz: 1af047e61d41dc1b26f2cced3d903b77b9c2a7f81928083bd66c12253813472151272098b66f5019dc7c3b2e8b259487f8f2dae9a01690d20dd1ce7f9eb8f881
6
+ metadata.gz: a1ecf360fdf3070c5772bf6e480dec9ea109b1d968d957ba8e1414960c144c81077a43f7e250991413f58d01320e5238ee7fde2d2d1514a13152af20989b823a
7
+ data.tar.gz: e4de49d6e8ac95389c2f7817f302b43c03a68ec8b36f76d55f6158895cd392c7c39978c0adc1fe3ccf8711cb02c60dfc8a834b3bd0c2acd7a26507170de460f7
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
@@ -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: x86_64-darwin
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/x86_64-darwin/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: