webpack_native 0.5.3 → 0.5.7

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: 204e0aef2aa27cddb432ea783ba7e925f8f58b735d1c2d1a0eada19ec852cfd1
4
- data.tar.gz: 7a76b3da194bd99d3ee18062c0b58e1cf6b0623b4db7927cc488162fd7cf718d
3
+ metadata.gz: 36a1f56a7a1e39051ff84011afa331cfbb351c3b2dcfa36da6eeeedfef19cb79
4
+ data.tar.gz: 4f73663ef07d2d3b81ecd3412c01cb092840eb6e4664ef6a605a985e6c9aa4b9
5
5
  SHA512:
6
- metadata.gz: babf34cdf5016bf229b1c9943551b307e9772f198348a465898bb623e22594d35562156281b3e33200a61fa027b397e47042bf4dbec8b785b6dfdbb5ac48328a
7
- data.tar.gz: cf244951f30af459e62d0d0fe29982d6800b5e8208221d3570fe41c8c8ce842c6aaf108632beb6760a6bef24fa0fe6cc94097b1db7a56b928845b2d7a0d2e41f
6
+ metadata.gz: 2dd76f824e10c423bfe2839d5b9eb9caa36d87662abd6f4dc87360110d631ca0ecd9be4588301b32650595fbaa121f0da9bc859e6b3265c2d9a1b4b98f5ef5f6
7
+ data.tar.gz: a3f2c3c20b67cc2367e9fecdd9fbf22dc7b29e20fae7e43723373a66daecf2181631c41235384643b4ec4d5d0fb714a9a66b6cfd55fb48dc24dabba6d92425b8
@@ -7,6 +7,7 @@ class WebpackNative::DevGenerator < Rails::Generators::Base
7
7
  Mutex.new.synchronize do
8
8
  Dir.chdir "#{Rails.root}/app/webpack_native" do
9
9
  Dir.mkdir('src/images') unless Dir.exist?('src/images')
10
+ Dir.mkdir('src/favicons') unless Dir.exist?('src/favicons')
10
11
  %x{ yarn install }
11
12
  result = %x{ npm run build:dev }
12
13
  puts "\n"
@@ -13,6 +13,9 @@ class WebpackNative::InstallGenerator < Rails::Generators::Base
13
13
  # Not sure but using the gem from rubygems... seems like the "images" directory isn't created when this generator runs, in the meantime let's add it (once again maybe?)
14
14
  images_directory = 'app/webpack_native/src/images'
15
15
  empty_directory(images_directory) unless Dir.exist?(images_directory)
16
+
17
+ favicons_directory = 'app/webpack_native/src/favicons'
18
+ empty_directory(favicons_directory) unless Dir.exist?(favicons_directory)
16
19
  end
17
20
 
18
21
  # (2) insert necessary helpers in the layouts/application.html.erb to render the <link> and <javascript> tags
File without changes
@@ -2,6 +2,7 @@
2
2
  import '../stylesheets/application.scss';
3
3
  // the following line requires that images folder exists
4
4
  require.context('../images', true, /\.(gif|jpeg|jpg|png|svg)$/i);
5
+ require.context('../favicons', true);
5
6
 
6
7
  require("@rails/ujs").start();
7
8
  require("turbolinks").start();
@@ -57,7 +57,10 @@ module.exports = (env, options) => {
57
57
  ],
58
58
  },
59
59
  {
60
- test: /\.(png|jpg|jpeg|gif|svg|ttf|woff2|woff|eot|ico|webmanifest)$/i,
60
+ test: /\.(png|jpg|jpeg|gif|svg|ttf|woff2|woff|eot)$/i,
61
+ exclude: [
62
+ path.resolve(__dirname, "src/favicons")
63
+ ],
61
64
  use: [
62
65
  {
63
66
  loader: 'url-loader',
@@ -68,6 +71,24 @@ module.exports = (env, options) => {
68
71
  },
69
72
  // { loader: 'image-webpack-loader' }
70
73
  ],
74
+ },
75
+ {
76
+ test: /\.(png|jpg|jpeg|svg|ttf|ico|webmanifest)$/i,
77
+ exclude: [
78
+ path.resolve(__dirname, "src/images"),
79
+ path.resolve(__dirname, 'node_modules')
80
+ ],
81
+ use: [
82
+ {
83
+ loader: 'url-loader',
84
+ options: {
85
+ limit: false, //8192,
86
+ name: '[name].[ext]',
87
+ outputPath: '../../public'
88
+ },
89
+ },
90
+ // { loader: 'image-webpack-loader' }
91
+ ],
71
92
  }
72
93
  ]
73
94
  },
@@ -56,7 +56,10 @@ class WebpackNative::Railtie < ::Rails::Railtie
56
56
  initializer "run_webpack_build_cmd" do
57
57
  config.after_initialize do
58
58
  if defined?(Rails::Server) && Rails.env.development?
59
- Thread.new { start_webpack }
59
+ # starting this in new thread is causing bug in ruby 3.0.2
60
+ # conflicting chdir during another chdir block
61
+ #Thread.new { start_webpack }
62
+ fork { start_webpack }
60
63
  end
61
64
  end
62
65
  end
File without changes
@@ -1,3 +1,3 @@
1
1
  module WebpackNative
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.7"
3
3
  end
@@ -5,7 +5,9 @@ module WebpackNative::WebpackNativeHelper
5
5
  href: webpack_stylesheet_path(asset),
6
6
  rel: "stylesheet"
7
7
  )
8
- tag.link(html_options).html_safe
8
+ #tag.link is not working correctly on (Rails 6.1.4.1 + ruby3)
9
+ #tag.link(html_options).html_safe
10
+ content_tag("link".freeze, nil, html_options).html_safe
9
11
  end
10
12
 
11
13
  def webpack_stylesheet_path(asset, **options)
@@ -50,10 +52,10 @@ module WebpackNative::WebpackNativeHelper
50
52
  # <%= webpack_webmanifest('manifest.webmanifest') %>
51
53
 
52
54
  # result:
53
- #<link rel="apple-touch-icon" sizes="180x180" href="/webpack_native/apple-touch-icon.png">
54
- #<link rel="icon" type="image/png" sizes="32x32" href="/webpack_native/favicon-32x32.png">
55
- #<link rel="icon" type="image/png" sizes="16x16" href="/webpack_native/favicon-16x16.png">
56
- #<link rel="manifest" href="/webpack_native/site.webmanifest">
55
+ #<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
56
+ #<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
57
+ #<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
58
+ #<link rel="manifest" href="/site.webmanifest">
57
59
 
58
60
  def webpack_favicons(*args)
59
61
  tags = []
@@ -66,7 +68,7 @@ module WebpackNative::WebpackNativeHelper
66
68
  manifest = favicon
67
69
  html_options = {
68
70
  rel: 'manifest',
69
- href: webpack_native_lookup(manifest)
71
+ href: "/#{manifest}"
70
72
  }
71
73
 
72
74
  else
@@ -83,7 +85,7 @@ module WebpackNative::WebpackNativeHelper
83
85
  html_options = {
84
86
  rel: filename == 'apple-touch-icon' ? 'apple-touch-icon' : 'icon',
85
87
  type: mimetypes[ext],
86
- href: webpack_native_lookup(favicon)
88
+ href: "/#{favicon}"
87
89
  }
88
90
 
89
91
  sizes = filename[/(.+)?([0-9]{2,3}x[0-9]{2,3})(.+)?/, 2]
@@ -94,7 +96,8 @@ module WebpackNative::WebpackNativeHelper
94
96
 
95
97
  end
96
98
 
97
- tags << tag.link(html_options)
99
+ # tags << tag.link(html_options)
100
+ tags << content_tag("link".freeze, nil, html_options)
98
101
 
99
102
  end
100
103
 
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webpack_native
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - scratchoo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-13 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Use vanilla webpack to manage your assets efficiently, no webpacker or
14
14
  asset pipeline anymore!
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.1.2
52
+ rubygems_version: 3.2.22
53
53
  signing_key:
54
54
  specification_version: 4
55
55
  summary: Vanilla Webpack For Rails Applications