mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 19:30:15 +01:00
27 lines
713 B
JavaScript
27 lines
713 B
JavaScript
|
|
const { execSync } = require('child_process');
|
||
|
|
const path = require('path');
|
||
|
|
|
||
|
|
const { deleteNodeModules } = require('./helpers');
|
||
|
|
|
||
|
|
// Set the directories
|
||
|
|
const rootDir = path.resolve(__dirname, '..');
|
||
|
|
const directories = [
|
||
|
|
rootDir,
|
||
|
|
path.resolve(rootDir, 'packages', 'data-provider'),
|
||
|
|
path.resolve(rootDir, 'client'),
|
||
|
|
path.resolve(rootDir, 'api'),
|
||
|
|
];
|
||
|
|
|
||
|
|
(async () => {
|
||
|
|
// Delete all node_modules
|
||
|
|
directories.forEach(deleteNodeModules);
|
||
|
|
|
||
|
|
// Run npm cache clean --force
|
||
|
|
console.purple('Cleaning npm cache...');
|
||
|
|
execSync('npm cache clean --force', { stdio: 'inherit' });
|
||
|
|
|
||
|
|
// Install dependencies
|
||
|
|
console.purple('Installing dependencies...');
|
||
|
|
execSync('npm install', { stdio: 'inherit' });
|
||
|
|
})();
|