How Do I Exclude a JavaScript Library from a Packaging Job
When building your application or extension, the packaging job might fail if you try to include a JavaScript library in the bundle.
To resolve this problem, you can configure the vb-require-bundle
Grunt task to exclude the library from the bundle. For example, the Grunt file to exclude the exceljs.min
JavaScript library might look like this:
'use strict';
/**
* Visual Builder application build script.
* For details about the application build and Visual Builder-specific grunt tasks
* provided by the grunt-vb-build npm dependency, please refer to
* https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/app-builder-cloud&id=visual-application-build
*/
module.exports = (grunt) => {
require('load-grunt-tasks')(grunt);
grunt.config('vb-require-bundle', {
"options": {
"emptyPaths": ["xlsx"],
"bundles": {
"vb-app-bundle": {
"modules": {
"find": [
".*(\\.(js|json|html|css))$",
"!resources/js/exceljs",
]
}
}
}
}
});
};