sprockets-esbuild 0.0.1-x86_64-linux → 0.0.2-x86_64-linux

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: 1bfff7901471e178299d9a90a4b6f357f541b2f9cb1bcca8217826d968f404ea
4
- data.tar.gz: 9e391ac33579c12bb489fa39fcc9b8837e2db7f4098a1d1436eeea861f4cf1a3
3
+ metadata.gz: f8105abbf9195c1063532ff12f71ba2230499b8715e8e0246a6e7d087d5d5c4a
4
+ data.tar.gz: 578a9657405d9c55ca2670c1b5283ece892982fef18c2e9ff908c7a5cae59143
5
5
  SHA512:
6
- metadata.gz: 293dc2a0af86945e7ba9a97680e87b40a5f8af6d851a3d506c89debea37f075ef0f4732064486cc4c716304952a5c09d62b6af2e10897d9ad74cb9aa745ab510
7
- data.tar.gz: 980713bd4bfb7f81b628fb918a1e4b3a129ca970ac0ac03aefde7dbec7acfbd0f88c8412226974331402e7d169f65188bf0d40fad26269e65ac77674fda870bc
6
+ metadata.gz: f192c0b1a037c43994115e244164702e71f71793285066382ec080974ad2c1619a927881a875ff27e85840fe182b5a6f858aeecb9aad0fe29912b0f8d312b6ff
7
+ data.tar.gz: aa6d590d1b24e34d5a84780a2d7f97a583ddeee0705c798e4fa172707c28bff6c61b4df3bb0ba62bb6fc99c1a2549e5ed8d34dc5910c5f7050e8a17d26b6257e
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-linux
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-linux/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: