1. #!/usr/bin/env node
    
  2. 
    
  3. 'use strict';
    
  4. 
    
  5. const clear = require('clear');
    
  6. const {confirm} = require('../utils');
    
  7. const theme = require('../theme');
    
  8. 
    
  9. const run = async () => {
    
  10.   clear();
    
  11. 
    
  12.   console.log(
    
  13.     theme.caution(
    
  14.       'This script does not run any automated tests.' +
    
  15.         'You should run them manually before creating a "next" release.'
    
  16.     )
    
  17.   );
    
  18. 
    
  19.   await confirm('Do you want to proceed?');
    
  20. 
    
  21.   clear();
    
  22. };
    
  23. 
    
  24. module.exports = run;