Sha256: f929e2d6071efd9b6f50c3967675a480eb3a605a67630af8d60f37af96fe0fa2
Contents?: true
Size: 1.24 KB
Versions: 40
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true require 'active_support/dependencies/autoload' module Proscenium extend ActiveSupport::Autoload FILE_EXTENSIONS = ['js', 'mjs', 'ts', 'jsx', 'tsx', 'css', 'js.map', 'mjs.map', 'jsx.map', 'ts.map', 'tsx.map', 'css.map'].freeze ALLOWED_DIRECTORIES = 'app,lib,config,vendor,node_modules' # Environment variables that should always be passed to the builder. DEFAULT_ENV_VARS = Set['RAILS_ENV', 'NODE_ENV'].freeze autoload :SourcePath autoload :Utils autoload :Monkey autoload :Middleware autoload :EnsureLoaded autoload :SideLoad autoload :CssModule autoload :ReactComponentable autoload :ViewComponent autoload :Phlex autoload :Helper autoload :Builder autoload :Importer autoload :Resolver class Deprecator def deprecation_warning(name, message, _caller_backtrace = nil) msg = "`#{name}` is deprecated and will be removed in a near future release of Proscenium" msg << " (#{message})" if message Kernel.warn msg end end class PathResolutionFailed < StandardError def initialize(path) @path = path super end def message "Path #{@path.inspect} cannot be resolved" end end end require 'proscenium/railtie'
Version data entries
40 entries across 40 versions & 1 rubygems