2019-05-29 05:21:06 -04:00
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Sanity-check the conversion and remove this comment.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
const version = {
|
|
|
|
pdfjs: '2.0.943',
|
|
|
|
moment: '2.9.0',
|
2019-06-20 05:10:05 -04:00
|
|
|
ace: '1.4.5', // Upgrade instructions: https://github.com/overleaf/write_latex/wiki/Upgrading-Ace
|
2019-10-16 06:10:54 -04:00
|
|
|
fineuploader: '5.15.4',
|
|
|
|
// For frontend. Backend has a different version defined in package.json
|
|
|
|
underscore: '1.9.1',
|
|
|
|
algolia: '2.5.2'
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
version,
|
|
|
|
|
|
|
|
lib(name) {
|
|
|
|
if (version[name] != null) {
|
|
|
|
return `${name}-${version[name]}`
|
|
|
|
} else {
|
|
|
|
return `${name}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|