The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/.scripts/npm-postinstall.js

11 lines
330 B

const { execSync } = require('child_process');
console.log('Running npm-postinstall.js');
execSync('cp node_modules/katex/dist/katex.min.css app/katex/');
execSync('mkdir -p public/fonts/');
execSync('cp node_modules/katex/dist/fonts/* public/fonts/');
execSync('cp node_modules/pdfjs-dist/build/pdf.worker.min.js public/');