opal-webpack-loader 0.9.1 → 0.9.2
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 +4 -4
- data/lib/opal-webpack-loader/installer_cli.rb +0 -3
- data/lib/opal-webpack-loader/templates/debug.js.erb +0 -1
- data/lib/opal-webpack-loader/templates/development.js.erb +0 -1
- data/lib/opal-webpack-loader/version.rb +1 -1
- metadata +2 -3
- data/lib/opal-webpack-loader/templates/application_debug.js.erb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15878eb2d26afab820777cbb5011843f9b0396f6a60e759231deab3b5f4cf28e
|
4
|
+
data.tar.gz: cf9580c020f6bd73e16496e7effc99298d219d3a791bdc6be0f8475aef731bb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fc69e198a0156ac93de99506f3ebcbd70d26fc7593c0995f50b636ef7b137704f0fc46d04abd508c612a55a9b2c87e76215750b9da3729b5681d6b38c021a59
|
7
|
+
data.tar.gz: 75e0ead3e1ce46c02228d3a166760ef34b862113013a2b392460f87d7f9fdab3bc5b3db63cf337fb3ea4479ad327537b8d71724323c2e840b7a244ce2eeae496
|
@@ -16,7 +16,6 @@ module OpalWebpackLoader
|
|
16
16
|
# +- imports # javascript entrypoints, import other components etc.
|
17
17
|
# +- application.js
|
18
18
|
# +- application_common.js
|
19
|
-
# +- application_debug.js
|
20
19
|
# +- application_ssr.js
|
21
20
|
# +- isomorfeus_loader.rb
|
22
21
|
# +- models
|
@@ -232,7 +231,6 @@ module OpalWebpackLoader
|
|
232
231
|
erb_hash = { opal_dir: File.join(@js_rel_prefix, @opal_directory), opal_name: options[:opal_name], application_css: @application_css }
|
233
232
|
create_file_from_template('application.js.erb', File.join(@js_entrypoints_directory, 'application.js'), erb_hash)
|
234
233
|
create_file_from_template('application_common.js.erb', File.join(@js_entrypoints_directory, 'application_common.js'),erb_hash)
|
235
|
-
create_file_from_template('application_debug.js.erb', File.join(@js_entrypoints_directory, 'application_debug.js'), erb_hash)
|
236
234
|
create_file_from_template('application_ssr.js.erb', File.join(@js_entrypoints_directory, 'application_ssr.js'), erb_hash)
|
237
235
|
create_file_from_template('application_web_worker.js.erb', File.join(@js_entrypoints_directory, 'application_web_worker.js'), erb_hash)
|
238
236
|
end
|
@@ -307,7 +305,6 @@ module OpalWebpackLoader
|
|
307
305
|
default_targets: @dev_default_targets,
|
308
306
|
js_entry: File.join(@conf_rel_prefix, @js_entrypoints_directory, 'application.js'),
|
309
307
|
js_common_entry: File.join(@conf_rel_prefix, @js_entrypoints_directory, 'application_common.js'),
|
310
|
-
js_debug_entry: File.join(@conf_rel_prefix, @js_entrypoints_directory, 'application_debug.js'),
|
311
308
|
js_ssr_entry: File.join(@conf_rel_prefix, @js_entrypoints_directory, 'application_ssr.js'),
|
312
309
|
js_web_worker_entry: File.join(@conf_rel_prefix, @js_entrypoints_directory, 'application_web_worker.js'),
|
313
310
|
opal_directory: File.join(@conf_rel_prefix, @opal_directory),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opal-webpack-loader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Biedermann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-06-
|
11
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|
@@ -191,7 +191,6 @@ files:
|
|
191
191
|
- lib/opal-webpack-loader/templates/application.css.erb
|
192
192
|
- lib/opal-webpack-loader/templates/application.js.erb
|
193
193
|
- lib/opal-webpack-loader/templates/application_common.js.erb
|
194
|
-
- lib/opal-webpack-loader/templates/application_debug.js.erb
|
195
194
|
- lib/opal-webpack-loader/templates/application_ssr.js.erb
|
196
195
|
- lib/opal-webpack-loader/templates/application_web_worker.js.erb
|
197
196
|
- lib/opal-webpack-loader/templates/debug.js.erb
|