sprockets_terser_with_source_maps 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 79fd8bbc6060ac2dc72a05d181e2448755c52a7bccc79b132e3152b2bd2218b1
4
+ data.tar.gz: 4b740851e0ce654c583cf7b2cb7c3f68315fd65f0816ed7304b3f8d6cc0973d0
5
+ SHA512:
6
+ metadata.gz: 0fb9f658e50a1d90b490a88c2a914735efe1322b454d6eb799c321e1f20d6cb2d6386ab74a2d4b646daa38224dda345a87b82ad1f17b0bc578e21cf3a168b880
7
+ data.tar.gz: 3dc5f11e5fc43ea549c458b23756ba8f7623a64d177c8b5b6df8396959731469e7e868f1490217f357755f54ea93badbdbb671bcbe0a742d913fe2a22e87d63c
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Javier Menéndez Rizo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,101 @@
1
+ [![Gem Version](https://badge.fury.io/rb/sprockets_terser_with_source_maps.svg)](https://badge.fury.io/rb/sprockets_terser_with_source_maps)
2
+ [![CI](https://github.com/javier-menendez/sprockets_terser_with_source_maps/actions/workflows/ci.yml/badge.svg)](https://github.com/javier-menendez/sprockets_terser_with_source_maps/actions/workflows/ci.yml)
3
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
4
+
5
+ # SprocketsTerserWithSourceMaps
6
+
7
+ Create source maps when compressing assets in your Rails applications.
8
+
9
+ This gem uses Terser to create source maps for your concatenated javascripts in Rails.
10
+ It is meant to be used as a replacement for javascript compressor.
11
+
12
+ This gem is ported from [sprockets_uglifier_with_source_maps](https://github.com/AlexanderPavlenko/sprockets_uglifier_with_source_maps)
13
+ to generate source maps using terser as compressor.
14
+
15
+ Rails versions supported: 4.2, 5.
16
+
17
+ ## Installation
18
+
19
+ Add this line to your application's Gemfile:
20
+
21
+ ```ruby
22
+ gem 'sprockets_terser_with_source_maps'
23
+ ```
24
+
25
+ And then execute:
26
+
27
+ $ bundle install
28
+
29
+ Or install it yourself as:
30
+
31
+ $ gem install sprockets_terser_with_source_maps
32
+
33
+ ## Usage
34
+
35
+ In your Rails applications environment configuration:
36
+
37
+ config.assets.js_compressor = :terser_with_source_maps
38
+
39
+ If you need to pass options to terser:
40
+
41
+ config.assets.terser = {output: {beautify: true, indent_level: 2}, compress: {drop_console: true}}
42
+
43
+ Your assets will be built as normal, also maps and concatenated sources will be provided as well in `public/assets/maps` and `public/assets/sources`.
44
+ These subdirs may be configured:
45
+
46
+ config.assets.sourcemaps_prefix = 'my_maps'
47
+ config.assets.uncompressed_prefix = 'my_sources'
48
+
49
+ Alternatively, sources can be embedded into sourcemaps' `sourcesContent` field:
50
+
51
+ config.assets.sourcemaps_embed_source = true
52
+
53
+ You can optionally skip gzipping your maps and sources:
54
+
55
+ config.assets.sourcemaps_gzip = false
56
+
57
+ By default maps and sources are defined relatively and will be fetched from the same domain your js file is served from. If you are using a CDN you may not want this - instead you might want to use a direct link to your site so you can more easily implement IP or Basic Auth protection:
58
+
59
+ # set to a url - js will be served from 'http://cdn.host.com' but source map links will use 'http://some.host.com/'
60
+
61
+ config.assets.sourcemaps_url_root = 'http://some.host.com/'
62
+
63
+ If you use CloudFront you might want to generate a signed url for these files that limits access based on IP address. You can do that by setting sourcemaps_url_root to a Proc and handling your URL signing there:
64
+
65
+ # using a Proc - see the AWS SDK docs for everything required to make this work
66
+ config.assets.sourcemaps_url_root = Proc.new { |file| MyApp.generate_a_signed_url_for file }
67
+
68
+ ## Example
69
+
70
+ $ rm -rf tmp/cache && rm -rf public/assets && DISABLE_SPRING=true RAILS_ENV=production bin/rake assets:precompile
71
+
72
+ $ tree public/assets
73
+ public/assets
74
+ ├── application-f925f01bc55e9831029c1eb2c20ee889.js
75
+ ├── maps
76
+ │ └── application-a3aff92c860f3876615c2d158f724865.js.map
77
+ └── sources
78
+ └── application-73a007cf2d51c423a4420b649344b52e.js
79
+
80
+ $ tail -n1 public/assets/application-f925f01bc55e9831029c1eb2c20ee889.js
81
+ //# sourceMappingURL=/assets/maps/application-a3aff92c860f3876615c2d158f724865.js.map
82
+
83
+ $ head -c115 public/assets/maps/application-a3aff92c860f3876615c2d158f724865.js.map
84
+ {"version":3,"file":"application.js","sources":["/assets/sources/application-73a007cf2d51c423a4420b649344b52e.js"],
85
+
86
+ ## Troubleshooting
87
+
88
+ If sourcemaps are not generated, try `rm -rf tmp/cache`.
89
+
90
+ ## Contributing
91
+
92
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sprockets_terser_with_source_maps. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/sprockets_terser_with_source_maps/blob/master/CODE_OF_CONDUCT.md).
93
+
94
+
95
+ ## License
96
+
97
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
98
+
99
+ ## Code of Conduct
100
+
101
+ Everyone interacting in the SprocketsTerserWithSourceMaps project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sprockets_terser_with_source_maps/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,87 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sprockets/digest_utils'
4
+ require 'terser/compressor'
5
+
6
+ module SprocketsTerserWithSourceMaps
7
+ class Compressor < Terser::Compressor # :nodoc:
8
+ def initialize(options = {})
9
+ @options = options.merge(Rails.application.config.assets.terser.to_h)
10
+ super @options
11
+ end
12
+
13
+ def call(input)
14
+ input_options = { source_map: { filename: input[:filename] } }
15
+
16
+ data = input.fetch(:data)
17
+ name = input.fetch(:name)
18
+
19
+ compressed_js, map = @terser.compile_with_map(data, input_options)
20
+
21
+ sourcemap = JSON.parse(map)
22
+
23
+ if Rails.application.config.assets.sourcemaps_embed_source
24
+ sourcemap['sourcesContent'] = [data]
25
+ else
26
+ # Generate uncompressed asset
27
+ uncompressed_url = generate_asset_file(name, data, Rails.application.config.assets.uncompressed_prefix)
28
+
29
+ sourcemap['sources'] = [uncompressed_url]
30
+ end
31
+
32
+ sourcemap['file'] = "#{name}.js"
33
+ sourcemap_json = sourcemap.to_json
34
+
35
+ # Generate sourcemap file
36
+ sourcemap_url = generate_asset_file(
37
+ name, sourcemap_json,
38
+ Rails.application.config.assets.sourcemaps_prefix,
39
+ 'js.map'
40
+ )
41
+
42
+ compressed_js.concat "\n//# sourceMappingURL=#{sourcemap_url}\n"
43
+ end
44
+
45
+ private
46
+
47
+ def generate_asset_file(name, data, prefix, extension = 'js')
48
+ filename = File.join(Rails.application.config.assets.prefix, prefix, "#{name}-#{digest(data)}.#{extension}")
49
+ file_path = File.join(Rails.public_path, filename)
50
+ file_url = filename_to_url(filename)
51
+
52
+ FileUtils.mkdir_p File.dirname(file_path)
53
+ File.write(file_path, data)
54
+ gzip_file(file_path) if gzip?
55
+ file_url
56
+ end
57
+
58
+ def filename_to_url(filename)
59
+ url_root = Rails.application.config.assets.sourcemaps_url_root
60
+ case url_root
61
+ when FalseClass
62
+ filename
63
+ when Proc
64
+ url_root.call filename
65
+ else
66
+ File.join url_root.to_s, filename
67
+ end
68
+ end
69
+
70
+ def gzip?
71
+ config = Rails.application.config.assets
72
+ config.sourcemaps_gzip || (config.sourcemaps_gzip.nil? && config.gzip)
73
+ end
74
+
75
+ def gzip_file(path)
76
+ Zlib::GzipWriter.open("#{path}.gz") do |gz|
77
+ gz.mtime = File.mtime(path)
78
+ gz.orig_name = path
79
+ gz.write File.binread(path)
80
+ end
81
+ end
82
+
83
+ def digest(io)
84
+ Sprockets::DigestUtils.pack_hexdigest Sprockets::DigestUtils.digest(io)
85
+ end
86
+ end
87
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'action_controller/railtie'
4
+
5
+ module SprocketsTerserWithSourceMaps
6
+ class Railtie < ::Rails::Railtie # :nodoc:
7
+ initializer 'sprockets-terser-with-source-maps.environment', group: :all do |app|
8
+ config = app.config
9
+ config.assets.sourcemaps_prefix ||= 'maps'
10
+ config.assets.uncompressed_prefix ||= 'sources'
11
+ config.assets.sourcemaps_url_root ||= false
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SprocketsTerserWithSourceMaps
4
+ VERSION = '1.0.0'
5
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'sprockets'
4
+ require 'sprockets_terser_with_source_maps/version'
5
+ require 'sprockets_terser_with_source_maps/compressor'
6
+ require 'sprockets_terser_with_source_maps/railtie' if defined? Rails::Railtie
7
+ require 'terser'
8
+
9
+ Sprockets.register_compressor 'application/javascript',
10
+ :terser_with_source_maps,
11
+ SprocketsTerserWithSourceMaps::Compressor
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sprockets_terser_with_source_maps
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Javier Menéndez Rizo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-09-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sprockets-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: terser
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.1.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.1.0
41
+ description: Create source maps for your javascript assets along with their compression
42
+ using terser.
43
+ email:
44
+ - jmenendez087@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - LICENSE.txt
50
+ - README.md
51
+ - lib/sprockets_terser_with_source_maps.rb
52
+ - lib/sprockets_terser_with_source_maps/compressor.rb
53
+ - lib/sprockets_terser_with_source_maps/railtie.rb
54
+ - lib/sprockets_terser_with_source_maps/version.rb
55
+ homepage: https://github.com/javier-menendez/sprockets_terser_with_source_maps
56
+ licenses:
57
+ - MIT
58
+ metadata:
59
+ homepage_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps
60
+ source_code_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps
61
+ changelog_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps
62
+ rubygems_mfa_required: 'true'
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 2.3.0
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubygems_version: 3.4.19
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Create javascript source maps for your Rails applications
82
+ test_files: []