//= require library_name //= require ./file_name
Paths that begin with {@code ./} are considered to be relative to the currentdirectory. If the path does not begin with {@code ./}, then it is considered a path to a "library", meaning the classpath will be searched for a matching JavaScript file.
Note that paths can also be surrounded by quotes, but they are completely optional:
//= require "library_name" //= require "./file_name"
For backwards-compatibility with {@link SprocketsParserImplV3}, angle-brackets are also permitted.
//= require <library_name>
SprocketsParserImplV4 is the default implementation for fiftyfive-wicket-js 4.0. @since 4.0
|
|