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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd453ee3d4810ca78bb927ef17fcb1f71e67bbb6e9f5baa7428d896ed279c3da
4
- data.tar.gz: 89d2bd2e562871f4a3fcead09cf1227926973a361275a36761c5afd51a57a1cc
3
+ metadata.gz: 15878eb2d26afab820777cbb5011843f9b0396f6a60e759231deab3b5f4cf28e
4
+ data.tar.gz: cf9580c020f6bd73e16496e7effc99298d219d3a791bdc6be0f8475aef731bb9
5
5
  SHA512:
6
- metadata.gz: 86761a66291054aca8c1e1f3944120be2bea2c475a716beaa5f30eeac75053bb780003045d9cf6640b9e32744bfdf476450297e4ec2c4a197885f7dd6193943b
7
- data.tar.gz: 65d38c7126c97c97ddec18758478326e85fed6db336ca500d0b23a48cfac71d7bbba8b58f9026fae3774f0583224364ac15d2a6adfa6a84f462f63998c5d8266
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),
@@ -11,7 +11,6 @@ const common_config = {
11
11
  optimization: {
12
12
  removeAvailableModules: false,
13
13
  removeEmptyChunks: false,
14
- splitChunks: false,
15
14
  minimize: false // dont minimize for debugging
16
15
  },
17
16
  performance: {
@@ -11,7 +11,6 @@ const common_config = {
11
11
  optimization: {
12
12
  removeAvailableModules: false,
13
13
  removeEmptyChunks: false,
14
- splitChunks: false,
15
14
  minimize: false // dont minimize in development, to speed up hot reloads
16
15
  },
17
16
  performance: {
@@ -1,3 +1,3 @@
1
1
  module OpalWebpackLoader
2
- VERSION="0.9.1"
2
+ VERSION="0.9.2"
3
3
  end
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.1
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-05 00:00:00.000000000 Z
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
@@ -1,9 +0,0 @@
1
- // entry file for the browser debugging environment
2
-
3
- // import application.js
4
- import './application.js';
5
-
6
- // space for additional modules for debugging or helper code
7
-
8
- // allow for hot reloading
9
- if (module.hot) { module.hot.accept(); }