Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
'examples/**/*.html',
'packages/*/README.md',
'packages/@uppy/*/README.md',
'website/src/docs/**',
'website/src/examples/**',
'website/themes/uppy/layout/**',
'!**/node_modules/**'
])
await updateVersions(files, 'uppy')
await updateVersions(files, '@uppy/robodog')
await updateVersions(files, '@uppy/locales')
// gitignored files were updated for the npm package, but can't be updated
// on git.
const isIgnored = await globby.gitignore()
await gitAdd(files.filter((filename) => !isIgnored(filename)))
await npmRunBuild()
}