webpack_native 0.5.3 → 0.5.4

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: 204e0aef2aa27cddb432ea783ba7e925f8f58b735d1c2d1a0eada19ec852cfd1
4
- data.tar.gz: 7a76b3da194bd99d3ee18062c0b58e1cf6b0623b4db7927cc488162fd7cf718d
3
+ metadata.gz: d3502e8e87605dd20dea5b8c8509eb8ed95269e5bb0bee23f74c16b0500b988c
4
+ data.tar.gz: 9586d22e15d5e78f695df50da43c12d6849459e26cc1ead5e1eabfa86f07ef54
5
5
  SHA512:
6
- metadata.gz: babf34cdf5016bf229b1c9943551b307e9772f198348a465898bb623e22594d35562156281b3e33200a61fa027b397e47042bf4dbec8b785b6dfdbb5ac48328a
7
- data.tar.gz: cf244951f30af459e62d0d0fe29982d6800b5e8208221d3570fe41c8c8ce842c6aaf108632beb6760a6bef24fa0fe6cc94097b1db7a56b928845b2d7a0d2e41f
6
+ metadata.gz: b4b7aa7fe8d78cd9968ae67080e9ec5063b54a6f4edde532d673a5cc8d84ec1cc3508874f0fa145d7852e5db6f81aead923bbcbf15e9f258afc2fd20f189b1c1
7
+ data.tar.gz: 013a76ebae4470190a87d83c864bdb646f1dcc490527c50249a5695f8f6c33d010a6ec8803c236ff3b53b712cfc15b90ad0f1dcca398bfbca5898b2bf53b67eb
@@ -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"
@@ -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
  },
@@ -1,3 +1,3 @@
1
1
  module WebpackNative
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  end
@@ -50,10 +50,10 @@ module WebpackNative::WebpackNativeHelper
50
50
  # <%= webpack_webmanifest('manifest.webmanifest') %>
51
51
 
52
52
  # 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">
53
+ #<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
54
+ #<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
55
+ #<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
56
+ #<link rel="manifest" href="/site.webmanifest">
57
57
 
58
58
  def webpack_favicons(*args)
59
59
  tags = []
@@ -66,7 +66,7 @@ module WebpackNative::WebpackNativeHelper
66
66
  manifest = favicon
67
67
  html_options = {
68
68
  rel: 'manifest',
69
- href: webpack_native_lookup(manifest)
69
+ href: manifest
70
70
  }
71
71
 
72
72
  else
@@ -83,7 +83,7 @@ module WebpackNative::WebpackNativeHelper
83
83
  html_options = {
84
84
  rel: filename == 'apple-touch-icon' ? 'apple-touch-icon' : 'icon',
85
85
  type: mimetypes[ext],
86
- href: webpack_native_lookup(favicon)
86
+ href: favicon
87
87
  }
88
88
 
89
89
  sizes = filename[/(.+)?([0-9]{2,3}x[0-9]{2,3})(.+)?/, 2]
metadata CHANGED
@@ -1,7 +1,7 @@
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.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - scratchoo