mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7520174288
This better supports the community edition which currently has no code or modules that match and throws an error.
67 lines
No EOL
1.7 KiB
JavaScript
67 lines
No EOL
1.7 KiB
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
const MODULES_PATH = path.join(__dirname, '/modules')
|
|
|
|
// Generate a hash of entry points, including modules
|
|
const entryPoints = {}
|
|
if (fs.existsSync(MODULES_PATH)) {
|
|
fs.readdirSync(MODULES_PATH).reduce((acc, module) => {
|
|
const entryPath = path.join(MODULES_PATH, module, '/public/es/index.js')
|
|
if (fs.existsSync(entryPath)) {
|
|
acc[module] = entryPath
|
|
}
|
|
return acc
|
|
}, entryPoints)
|
|
}
|
|
|
|
// If no entry points are found, silently exit
|
|
if (!Object.keys(entryPoints).length) {
|
|
console.warn('No entry points found, exiting')
|
|
process.exit(0)
|
|
}
|
|
|
|
module.exports = {
|
|
// Defines the "entry point(s)" for the application - i.e. the file which
|
|
// bootstraps the application
|
|
entry: entryPoints,
|
|
|
|
// Define where and how the bundle will be output to disk
|
|
// Note: webpack-dev-server does not write the bundle to disk, instead it is
|
|
// kept in memory for speed
|
|
output: {
|
|
path: path.join(__dirname, '/public/js/es'),
|
|
|
|
filename: '[name].js',
|
|
|
|
// Output as UMD bundle (allows main JS to import with CJS, AMD or global
|
|
// style code bundles
|
|
libraryTarget: 'umd',
|
|
// Name the exported variable from output bundle
|
|
library: ['Frontend', '[name]']
|
|
},
|
|
|
|
// Define how file types are handled by webpack
|
|
module: {
|
|
rules: [{
|
|
// Pass application JS files through babel-loader, compiling to ES5
|
|
test: /\.js$/,
|
|
// Only compile application files (dependencies are in ES5 already)
|
|
exclude: /node_modules/,
|
|
use: [{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [
|
|
['env', { modules: false }]
|
|
],
|
|
// Configure babel-loader to cache compiled output so that subsequent
|
|
// compile runs are much faster
|
|
cacheDirectory: true
|
|
}
|
|
}]
|
|
}]
|
|
},
|
|
|
|
// TODO
|
|
// plugins: {}
|
|
} |