We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be23bd commit 67257d4Copy full SHA for 67257d4
app/generator.js
@@ -38,7 +38,10 @@ export default class Generator extends Base {
38
// init shared generator properies and methods
39
genBase(this);
40
41
- if(insight.optOut === undefined) {
+ if(process.env.CI) {
42
+ insight.optOut = true;
43
+ return cb();
44
+ } else if(insight.optOut === undefined) {
45
insight.askPermission(null, cb);
46
} else {
47
return cb();
0 commit comments