Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | 'use strict' |
||
2 | |||
3 | const Container = require('../containers/Container') |
||
4 | |||
5 | module.exports = function () { |
||
6 | // Check if we need to upgrade the project |
||
7 | Container.performUpgrade() |
||
8 | |||
9 | // Remove default container config |
||
10 | Container.clean() |
||
11 | } |
||
12 |