diff options
Diffstat (limited to 'scripts/danger/clean/cleaner.ts')
-rw-r--r-- | scripts/danger/clean/cleaner.ts | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/danger/clean/cleaner.ts b/scripts/danger/clean/cleaner.ts deleted file mode 100644 index 69e8a63a0..000000000 --- a/scripts/danger/clean/cleaner.ts +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | import { registerTSPaths } from '../../../server/helpers/register-ts-paths' | ||
2 | registerTSPaths() | ||
3 | |||
4 | import * as Promise from 'bluebird' | ||
5 | import * as rimraf from 'rimraf' | ||
6 | import { initDatabaseModels, sequelizeTypescript } from '../../../server/initializers/database' | ||
7 | import { CONFIG } from '../../../server/initializers/config' | ||
8 | |||
9 | initDatabaseModels(true) | ||
10 | .then(() => { | ||
11 | return sequelizeTypescript.drop() | ||
12 | }) | ||
13 | .then(() => { | ||
14 | console.info('Tables of %s deleted.', CONFIG.DATABASE.DBNAME) | ||
15 | |||
16 | const STORAGE = CONFIG.STORAGE | ||
17 | return Promise.mapSeries(Object.keys(STORAGE), storage => { | ||
18 | const storageDir = STORAGE[storage] | ||
19 | |||
20 | return new Promise((res, rej) => { | ||
21 | rimraf(storageDir, err => { | ||
22 | if (err) return rej(err) | ||
23 | |||
24 | console.info('%s deleted.', storageDir) | ||
25 | return res() | ||
26 | }) | ||
27 | }) | ||
28 | }) | ||
29 | .then(() => process.exit(0)) | ||
30 | }) | ||
31 | .catch(err => { | ||
32 | console.error(err) | ||
33 | process.exit(-1) | ||
34 | }) | ||