react/scripts/release/create-next-commands/confirm-automated-testing.js
Brian Vaughn 9e158c091b
Updated release script documentation and command names (#17929)
* Updated release script documentation and command names

* Update scripts/release/README.md

Co-Authored-By: Sunil Pai <threepointone@oculus.com>

* Updated README

Co-authored-by: Sunil Pai <threepointone@oculus.com>
2020-02-05 08:52:31 -08:00

25 lines
438 B
JavaScript

#!/usr/bin/env node
'use strict';
const clear = require('clear');
const {confirm} = require('../utils');
const theme = require('../theme');
const run = async () => {
clear();
console.log(
theme.caution(
'This script does not run any automated tests.' +
'You should run them manually before creating a "next" release.'
)
);
await confirm('Do you want to proceed?');
clear();
};
module.exports = run;