overleaf/services/web/app/src/infrastructure/PackageVersions.js
Alasdair Smith 9cf73f965c Merge pull request #1440 from overleaf/as-amd-webpack
Bundle all frontend code with webpack

GitOrigin-RevId: 1bd93dad516c456fe1649193868e841e20459b0b
2019-10-16 10:36:21 +00:00

28 lines
758 B
JavaScript

// 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',
ace: '1.4.5', // Upgrade instructions: https://github.com/overleaf/write_latex/wiki/Upgrading-Ace
fineuploader: '5.15.4',
// For frontend. Backend has a different version defined in package.json
underscore: '1.9.1',
algolia: '2.5.2'
}
module.exports = {
version,
lib(name) {
if (version[name] != null) {
return `${name}-${version[name]}`
} else {
return `${name}`
}
}
}