mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-23 19:20:41 +02:00
Convert to using graceful-fs vs vanilla fs module
This commit is contained in:
parent
a49abc7c67
commit
019596d709
26 changed files with 27 additions and 26 deletions
|
@ -10,7 +10,7 @@ const Config = require('../../config.js').config;
|
|||
const http = require('http');
|
||||
const https = require('https');
|
||||
const _ = require('lodash');
|
||||
const fs = require('fs');
|
||||
const fs = require('graceful-fs');
|
||||
const paths = require('path');
|
||||
const mimeTypes = require('mime-types');
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ const stringFormat = require('../../string_format.js');
|
|||
|
||||
// deps
|
||||
const ssh2 = require('ssh2');
|
||||
const fs = require('fs');
|
||||
const fs = require('graceful-fs');
|
||||
const util = require('util');
|
||||
const _ = require('lodash');
|
||||
const assert = require('assert');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue