Skip to content

Commit 2d4b21c

Browse files
authored
Add Propshaft .manifest.json to assets_manifests for support (#265)
1 parent 727fa58 commit 2d4b21c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ set :assets_roles, [:web, :app]
7474
# This should match config.assets.prefix in your rails config/application.rb
7575
set :assets_prefix, 'prepackaged-assets'
7676

77-
# Defaults to ["/path/to/release_path/public/#{fetch(:assets_prefix)}/.sprockets-manifest*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/manifest*.*"]
77+
# Defaults to ["/path/to/release_path/public/#{fetch(:assets_prefix)}/.sprockets-manifest*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/manifest*.*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/.manifest.json"]
7878
# This should match config.assets.manifest in your rails config/application.rb
7979
set :assets_manifests, ['app/assets/config/manifest.js']
8080

lib/capistrano/tasks/assets.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ namespace :load do
136136
set :assets_roles, fetch(:assets_roles, [:web])
137137
set :assets_prefix, fetch(:assets_prefix, 'assets')
138138
set :assets_manifests, -> {
139-
%w[.sprockets-manifest* manifest*.*].map do |pattern|
139+
%w[.sprockets-manifest* manifest*.* .manifest.json].map do |pattern|
140140
release_path.join("public", fetch(:assets_prefix), pattern)
141141
end
142142
}

0 commit comments

Comments
 (0)