DEV: Make Ember CLI assets the default in production (#15861)

This was reverted in e92f57255d due to memory usage concerns. This memory issue was resolved by 4cceb55621.
This commit is contained in:
David Taylor 2022-02-08 10:03:53 +00:00 committed by GitHub
parent 7afe768d60
commit ecc07fd8dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ class QunitController < ApplicationController
@is_proxied = is_ember_cli_proxy?
@legacy_ember = if Rails.env.production?
ENV['EMBER_CLI_PROD_ASSETS'] != "1"
ENV['EMBER_CLI_PROD_ASSETS'] == "0"
else
!@is_proxied
end

View File

@ -180,7 +180,7 @@ module Discourse
discourse/tests/test_starter.js
}
if ENV['EMBER_CLI_PROD_ASSETS'] != "1"
if ENV['EMBER_CLI_PROD_ASSETS'] == "0"
config.assets.precompile += %w{
discourse/tests/test-support-rails.js
discourse/tests/test-helpers-rails.js

View File

@ -35,7 +35,7 @@ task 'assets:precompile:before' do
require 'sprockets'
require 'digest/sha1'
if ENV['EMBER_CLI_PROD_ASSETS'] == "1"
if ENV['EMBER_CLI_PROD_ASSETS'] != "0"
# Remove the assets that Ember CLI will handle for us
Rails.configuration.assets.precompile.reject! do |asset|
asset.is_a?(String) &&
@ -312,7 +312,7 @@ end
task 'assets:precompile' => 'assets:precompile:before' do
copy_ember_cli_assets if ENV['EMBER_CLI_PROD_ASSETS'] == '1'
copy_ember_cli_assets if ENV['EMBER_CLI_PROD_ASSETS'] != '0'
refresh_days = GlobalSetting.refresh_maxmind_db_during_precompile_days