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
Fatal error building api.jquery.com in Windows environment:-
Running "build-xml-full" task >> Unknown option --path Task "build-xml-full" failed. Use --force to continue. Aborted due to warnings.
The failure is because GnuWin32 version of libxslt recommended in the main readme.md for use when building api.jquery,com in a windows environment does not support the "--path" option of xsltproc.
In order to use the recommended version of libxslt, grunt-jquery-content/tasks/build-xml.js can be altered by simply removing the last two parameter completely from line 165 (Release 0.5.0).
So, change from:-
args: ["--xinclude","--path",process.cwd(),
to:-
args: ["--xinclude",
Hope this helps.
Kind regards,
Alan
The text was updated successfully, but these errors were encountered:
Great. If the zlatkovic.com version of libxml works (I won't be trying it), all that needs to be changed is the readme.md file on api.jquery.com - because it recommends the GnuWin32 version.
Hi.
Fatal error building api.jquery.com in Windows environment:-
Running "build-xml-full" task
>> Unknown option --path
Task "build-xml-full" failed. Use --force to continue.
Aborted due to warnings.
The failure is because GnuWin32 version of libxslt recommended in the main readme.md for use when building api.jquery,com in a windows environment does not support the "--path" option of xsltproc.
In order to use the recommended version of libxslt, grunt-jquery-content/tasks/build-xml.js can be altered by simply removing the last two parameter completely from line 165 (Release 0.5.0).
So, change from:-
to:-
Hope this helps.
Kind regards,
Alan
The text was updated successfully, but these errors were encountered: