Module: Sprockets::Npm
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Defined in: | lib/sprockets/npm.rb |
Instance Method Summary
-
#read_package_directives(dirname, filename) {|File.expand_path(package['style'], dirname)| ... }
Internal: Read package.json’s main and style directives.
-
#resolve_alternates(load_path, logical_path)
Internal: Override resolve_alternates to install package.json behavior.
Instance Method Details
#read_package_directives(dirname, filename) {|File.expand_path(package['style'], dirname)| ... }
Internal: Read package.json’s main and style directives.
dirname - String path to component directory. filename - String path to package.json.
Returns nothing.
# File 'lib/sprockets/npm.rb', line 39
def read_package_directives(dirname, filename) package = JSON.parse(File.read(filename), create_additions: false) case package['main'] when String yield File. (package['main'], dirname) when nil yield File. ('index.js', dirname) end yield File. (package['style'], dirname) if package['style'] end
#resolve_alternates(load_path, logical_path)
Internal: Override resolve_alternates to install package.json behavior.
load_path - String environment path logical_path - String path relative to base
Returns candidate filenames.
# File 'lib/sprockets/npm.rb', line 12
def resolve_alternates(load_path, logical_path) candidates, deps = super dirname = File.join(load_path, logical_path) if directory?(dirname) filename = File.join(dirname, 'package.json') if self.file?(filename) deps << build_file_digest_uri(filename) read_package_directives(dirname, filename) do |path| if file?(path) candidates << path end end end end return candidates, deps end