You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
java.io.FileNotFoundException: /data/dev/cms-components/resources/js/[External/require.js (No such file or directory)
I'm getting the impression that include: only works with one single file, and that Gradle attempts to convert the array to a string, hence the [. Am I correct that include only works with one file?
((Listing many files is supported with the pure Javascript "version" of RequireJS.))
The text was updated successfully, but these errors were encountered:
the above code is not handling the array input properly. it should convert the array input to something like this "include=requireLib, anothermodule"
there are other limitations in command line syntax. this is found on requirejs.org
There is a limitation on the command line argument syntax. Dots are viewed as object property separators, to allow something like paths.jquery=lib/jquery to be transformed to the following in the optimizer:
paths: {
jquery: 'lib/jquery'
}
Hence, i preferred to use requirejs.buildProfile options instead of requirejs.options
This works fine for me:
But this fails: (the only difference is the
include:
part)With this weird error: (note the
[
)I'm getting the impression that
include:
only works with one single file, and that Gradle attempts to convert the array to a string, hence the[
. Am I correct thatinclude
only works with one file?((Listing many files is supported with the pure Javascript "version" of RequireJS.))
The text was updated successfully, but these errors were encountered: