sprockets_terser_with_source_maps 1.0.0 → 1.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4480da4d60e1d2d7c44e4e2d407f8225362cd0cec031c1ac258b7952f110cf16
|
4
|
+
data.tar.gz: 07d9974cc54bfb4179b2c56c703ead0022c1e1646e5457551b9adb1211b9fb03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acea96c9cbaea22ceccfbf23ef6eb7474b23cd0326fb9f4e03e9b62c48d59318ee99240c14e279bf75bd269810ecfeec06647420acfd3378bae4c17122dd107b
|
7
|
+
data.tar.gz: ae442f86dcb7f6fd33d16c0165a25bd5b53a30113da7ed6c2b09eb4587ba8d0a93b4d53baf6d53c9f9be0f0dcc772a7b675ee9fdf10ce11f48d5f1408f8721cb
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -9,10 +9,38 @@ Create source maps when compressing assets in your Rails applications.
|
|
9
9
|
This gem uses Terser to create source maps for your concatenated javascripts in Rails.
|
10
10
|
It is meant to be used as a replacement for javascript compressor.
|
11
11
|
|
12
|
-
This
|
12
|
+
This is a fork
|
13
|
+
from [sprockets_uglifier_with_source_maps](https://github.com/AlexanderPavlenko/sprockets_uglifier_with_source_maps)
|
13
14
|
to generate source maps using terser as compressor.
|
14
15
|
|
15
|
-
Rails
|
16
|
+
## Rails Supported Versions
|
17
|
+
|
18
|
+
<table>
|
19
|
+
<thead>
|
20
|
+
<tr>
|
21
|
+
<th>Version</th>
|
22
|
+
<th>Supported</th>
|
23
|
+
</tr>
|
24
|
+
</thead>
|
25
|
+
<tbody>
|
26
|
+
<tr>
|
27
|
+
<td>7.x</td>
|
28
|
+
<td>✓</td>
|
29
|
+
</tr>
|
30
|
+
<tr>
|
31
|
+
<td>6.x</td>
|
32
|
+
<td>✓</td>
|
33
|
+
</tr>
|
34
|
+
<tr>
|
35
|
+
<td>5.x</td>
|
36
|
+
<td>✓</td>
|
37
|
+
</tr>
|
38
|
+
<tr>
|
39
|
+
<td>4.2.x</td>
|
40
|
+
<td>✓</td>
|
41
|
+
</tr>
|
42
|
+
</tbody>
|
43
|
+
</table>
|
16
44
|
|
17
45
|
## Installation
|
18
46
|
|
@@ -38,9 +66,10 @@ In your Rails applications environment configuration:
|
|
38
66
|
|
39
67
|
If you need to pass options to terser:
|
40
68
|
|
41
|
-
config.assets.terser = {output: {beautify: true, indent_level: 2}
|
69
|
+
config.assets.terser = {output: {beautify: true, indent_level: 2}}
|
42
70
|
|
43
|
-
Your assets will be built as normal, also maps and concatenated sources will be provided as well in `public/assets/maps`
|
71
|
+
Your assets will be built as normal, also maps and concatenated sources will be provided as well in `public/assets/maps`
|
72
|
+
and `public/assets/sources`.
|
44
73
|
These subdirs may be configured:
|
45
74
|
|
46
75
|
config.assets.sourcemaps_prefix = 'my_maps'
|
@@ -54,13 +83,16 @@ You can optionally skip gzipping your maps and sources:
|
|
54
83
|
|
55
84
|
config.assets.sourcemaps_gzip = false
|
56
85
|
|
57
|
-
By default maps and sources are defined relatively and will be fetched from the same domain your js file is served from.
|
86
|
+
By default maps and sources are defined relatively and will be fetched from the same domain your js file is served from.
|
87
|
+
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
|
88
|
+
easily implement IP or Basic Auth protection:
|
58
89
|
|
59
90
|
# set to a url - js will be served from 'http://cdn.host.com' but source map links will use 'http://some.host.com/'
|
60
91
|
|
61
92
|
config.assets.sourcemaps_url_root = 'http://some.host.com/'
|
62
93
|
|
63
|
-
If you use CloudFront you might want to generate a signed url for these files that limits access based on IP address.
|
94
|
+
If you use CloudFront you might want to generate a signed url for these files that limits access based on IP address.
|
95
|
+
You can do that by setting sourcemaps_url_root to a Proc and handling your URL signing there:
|
64
96
|
|
65
97
|
# using a Proc - see the AWS SDK docs for everything required to make this work
|
66
98
|
config.assets.sourcemaps_url_root = Proc.new { |file| MyApp.generate_a_signed_url_for file }
|
@@ -89,8 +121,9 @@ If sourcemaps are not generated, try `rm -rf tmp/cache`.
|
|
89
121
|
|
90
122
|
## Contributing
|
91
123
|
|
92
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sprockets_terser_with_source_maps.
|
93
|
-
|
124
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sprockets_terser_with_source_maps.
|
125
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
126
|
+
the [code of conduct](https://github.com/[USERNAME]/sprockets_terser_with_source_maps/blob/master/CODE_OF_CONDUCT.md).
|
94
127
|
|
95
128
|
## License
|
96
129
|
|
@@ -98,4 +131,6 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
98
131
|
|
99
132
|
## Code of Conduct
|
100
133
|
|
101
|
-
Everyone interacting in the SprocketsTerserWithSourceMaps project's codebases, issue trackers, chat rooms and mailing
|
134
|
+
Everyone interacting in the SprocketsTerserWithSourceMaps project's codebases, issue trackers, chat rooms and mailing
|
135
|
+
lists is expected to follow
|
136
|
+
the [code of conduct](https://github.com/[USERNAME]/sprockets_terser_with_source_maps/blob/master/CODE_OF_CONDUCT.md).
|
@@ -2,10 +2,16 @@
|
|
2
2
|
|
3
3
|
require 'sprockets/digest_utils'
|
4
4
|
require 'terser/compressor'
|
5
|
+
require 'logger'
|
5
6
|
|
6
7
|
module SprocketsTerserWithSourceMaps
|
7
|
-
|
8
|
+
# Custom compressor to generate sourcemaps
|
9
|
+
class Compressor < Terser::Compressor
|
10
|
+
attr_accessor :logger
|
11
|
+
|
8
12
|
def initialize(options = {})
|
13
|
+
@logger = Logger.new($stdout)
|
14
|
+
@logger.level = Logger::INFO
|
9
15
|
@options = options.merge(Rails.application.config.assets.terser.to_h)
|
10
16
|
super @options
|
11
17
|
end
|
@@ -46,12 +52,15 @@ module SprocketsTerserWithSourceMaps
|
|
46
52
|
|
47
53
|
def generate_asset_file(name, data, prefix, extension = 'js')
|
48
54
|
filename = File.join(Rails.application.config.assets.prefix, prefix, "#{name}-#{digest(data)}.#{extension}")
|
49
|
-
file_path = File.join(Rails.public_path, filename)
|
55
|
+
file_path = File.join(Rails.public_path.to_s, filename)
|
50
56
|
file_url = filename_to_url(filename)
|
51
57
|
|
58
|
+
logger.info "Writing #{file_path}" if !File.exist?(file_path) && file_path.include?('.map')
|
59
|
+
|
52
60
|
FileUtils.mkdir_p File.dirname(file_path)
|
53
61
|
File.write(file_path, data)
|
54
62
|
gzip_file(file_path) if gzip?
|
63
|
+
|
55
64
|
file_url
|
56
65
|
end
|
57
66
|
|
@@ -73,6 +82,8 @@ module SprocketsTerserWithSourceMaps
|
|
73
82
|
end
|
74
83
|
|
75
84
|
def gzip_file(path)
|
85
|
+
logger.info "Writing #{path}.gz" if !File.exist?("#{path}.gz") && path.include?('.map')
|
86
|
+
|
76
87
|
Zlib::GzipWriter.open("#{path}.gz") do |gz|
|
77
88
|
gz.mtime = File.mtime(path)
|
78
89
|
gz.orig_name = path
|
@@ -3,7 +3,8 @@
|
|
3
3
|
require 'action_controller/railtie'
|
4
4
|
|
5
5
|
module SprocketsTerserWithSourceMaps
|
6
|
-
|
6
|
+
# Railtie for Rails
|
7
|
+
class Railtie < ::Rails::Railtie
|
7
8
|
initializer 'sprockets-terser-with-source-maps.environment', group: :all do |app|
|
8
9
|
config = app.config
|
9
10
|
config.assets.sourcemaps_prefix ||= 'maps'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprockets_terser_with_source_maps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Javier Menéndez Rizo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sprockets-rails
|
@@ -38,6 +38,76 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.1.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: railties
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '12.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '12.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
41
111
|
description: Create source maps for your javascript assets along with their compression
|
42
112
|
using terser.
|
43
113
|
email:
|
@@ -46,6 +116,7 @@ executables: []
|
|
46
116
|
extensions: []
|
47
117
|
extra_rdoc_files: []
|
48
118
|
files:
|
119
|
+
- CHANGELOG.md
|
49
120
|
- LICENSE.txt
|
50
121
|
- README.md
|
51
122
|
- lib/sprockets_terser_with_source_maps.rb
|
@@ -58,7 +129,9 @@ licenses:
|
|
58
129
|
metadata:
|
59
130
|
homepage_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps
|
60
131
|
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
|
132
|
+
changelog_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps/blob/main/CHANGELOG.md
|
133
|
+
documentation_uri: https://www.rubydoc.info/gems/sprockets_terser_with_source_maps
|
134
|
+
bug_tracker_uri: https://github.com/javier-menendez/sprockets_terser_with_source_maps/issues
|
62
135
|
rubygems_mfa_required: 'true'
|
63
136
|
post_install_message:
|
64
137
|
rdoc_options: []
|
@@ -68,7 +141,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
141
|
requirements:
|
69
142
|
- - ">="
|
70
143
|
- !ruby/object:Gem::Version
|
71
|
-
version: 2.
|
144
|
+
version: 2.2.0
|
72
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
146
|
requirements:
|
74
147
|
- - ">="
|