Packages that need specific configurations for ncc support are included below.
If you are having trouble running a package with ncc, try searching for it in the issue queue or posting an issue.
For example, with the mariadb dialect:
const Sequelize = require('sequelize');
const db = new Sequelize({
dialect: 'mariadb',
dialectModule: require('mariadb')
});The important part here is defining dialectModule.
Add google-proto-files in your package.json dependencies.
{
"name": "example",
"main": "index.js",
"dependencies": {
"@google-cloud/vision": "1.1.1",
"google-proto-files": "1.0.1"
}
}