Skip to content

Commit 607c5e5

Browse files
committed
Removed manual Chrome ext testing instructions
Keeping things simplified, like Firefox does
1 parent a8f0ce0 commit 607c5e5

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

shells/chrome/build.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const {join} = require('path');
1111
const build = require('../webextension/build');
1212

1313
const main = async () => {
14-
const unpackedPath = await build(
14+
await build(
1515
'chrome',
1616
join(__dirname, 'manifest.json'),
1717
join(__dirname, 'build')
@@ -21,11 +21,6 @@ const main = async () => {
2121
console.log(chalk.green('You can test this build by running:'));
2222
console.log(chalk.gray('\n# From the react-devtools root directory:'));
2323
console.log('npm run test:chrome');
24-
console.log(chalk.green('\nYou can also test by following the steps below:'));
25-
console.log(chalk.gray('\n# Open the following URL in Chrome:'));
26-
console.log('chrome://extensions/');
27-
console.log(chalk.gray('\n# Click "Load unpacked extension" and browse to:'));
28-
console.log(unpackedPath);
2924
};
3025

3126
main();

0 commit comments

Comments
 (0)