mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 15:59:29 +08:00
We are no longer using any of the transpilation/bundling features of Sprockets. We only use it to serve assets in development, and then collect & fingerprint them in production. This commit switches us to use the more modern "Propshaft" gem for that functionality. Propshaft is much simpler than Sprockets. Instead of taking a combination of paths + "precompile" list, Propshaft simply assumes all files in the configured directory are required in production. Previously we had some base paths configured quite high in the directory structure, and then only precompiled selected assets within the directory. That's no longer possible, so this commit refactors those places (mostly plugin-related) to use dedicated directories under `app/assets/generated/`. Another difference is that Propshaft applies asset digests in development as well as production. This is great for caching & dev/prod consistency, but does mean some small changes were required in tests. We previously had some freedom-patches applied to Sprockets. Some of those had to be ported across to Propshaft. We now have three patches: 1. Skip adding digest hashes to webpack-generated chunks (which are already digested, and referred to from other js files) 2. Avoid raising errors for missing assets in test mode. We don't always compile assets before running basic RSpec tests. 3. Maintain relative paths for sourcemap URLs, so that files don't need to be recompiled depending on their CDN path Significant refactors are made to the `assets.rake` and `s3.rake` tasks, which rely on implementation details of Sprockets/Propshaft.
31 lines
1.1 KiB
Ruby
31 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
# Enable the asset pipeline
|
|
Rails.application.config.assets.enabled = true
|
|
|
|
# Version of your assets, change this if you want to expire all your assets.
|
|
Rails.application.config.assets.version = "2-#{GlobalSetting.asset_url_salt}"
|
|
|
|
# Add additional assets to the asset load path.
|
|
Rails.application.config.assets.paths.push(
|
|
"#{Rails.root}/public/javascripts",
|
|
"#{Rails.root}/app/assets/javascripts/discourse/dist/assets",
|
|
)
|
|
|
|
Rails.application.config.assets.paths.push(
|
|
*Discourse.plugins.map { |p| "#{Rails.root}/app/assets/generated/#{p.directory_name}" },
|
|
)
|
|
|
|
# These paths are added automatically by propshaft, but we don't want them
|
|
Rails.application.config.assets.excluded_paths.push(
|
|
"#{Rails.root}/app/assets/generated",
|
|
"#{Rails.root}/app/assets/javascripts",
|
|
"#{Rails.root}/app/assets/stylesheets",
|
|
)
|
|
|
|
# We don't need/want most of Propshaft's preprocessing. Only keep the JS sourcemap handler
|
|
Rails.application.config.assets.compilers.filter! do |type, compiler|
|
|
type == "text/javascript" && compiler == Propshaft::Compiler::SourceMappingUrls
|
|
end
|