Remove scripts/webpack.js

This is no longer used.

Fixes: https://github.com/DSpace/dspace-angular/issues/2285
This commit is contained in:
Alan Orth
2023-05-31 12:51:49 +03:00
parent 38d7412569
commit 6483eb2c30
2 changed files with 1 additions and 15 deletions

View File

@@ -1,13 +0,0 @@
const path = require('path');
const child_process = require('child_process');
const heapSize = 4096;
const webpackPath = path.join('node_modules', 'webpack', 'bin', 'webpack.js');
const params = [
'--max_old_space_size=' + heapSize,
webpackPath,
...process.argv.slice(2)
];
child_process.spawn('node', params, { stdio:'inherit' });