Skip to content

Commit

Permalink
chore: remove spammy console statements (#2633)
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Apr 15, 2021
1 parent 993a7f0 commit e72e17d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
@@ -1,6 +1,5 @@
module.exports = [
(env, argv) => {
console.log({ argv });
const { mode } = argv;
return {
entry: './a.js',
Expand All @@ -11,7 +10,6 @@ module.exports = [
};
},
(env, argv) => {
console.log({ argv });
const { mode } = argv;
return {
entry: './b.js',
Expand Down
@@ -1,6 +1,5 @@
module.exports = [
(env, argv) => {
console.log({ argv });
const { mode } = argv;
return {
entry: './a.js',
Expand All @@ -11,7 +10,6 @@ module.exports = [
};
},
(env, argv) => {
console.log({ argv });
const { mode } = argv;
return {
entry: './b.js',
Expand Down
3 changes: 0 additions & 3 deletions test/build/core-flags/watch-flags.test.js
Expand Up @@ -20,9 +20,6 @@ describe('watch config related flag', () => {
it(`should config --${flag.name} correctly`, async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [`--${flag.name}`]);

console.log(stdout);
console.log(stderr);

expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();

Expand Down

0 comments on commit e72e17d

Please sign in to comment.