Skip to content

Commit

Permalink
Disable the prepare task
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyBelym committed Nov 20, 2019
1 parent 2884680 commit 71b8353
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Gulpfile.js
Expand Up @@ -19,7 +19,6 @@ const path = require('path');
const { Transform } = require('stream');
const { promisify } = require('util');
const globby = require('globby');
const isCI = require('is-ci');
const open = require('open');
const connect = require('connect');
const spawn = require('cross-spawn');
Expand Down Expand Up @@ -56,7 +55,7 @@ ll
const ARGS = minimist(process.argv.slice(2));
const DEV_MODE = 'dev' in ARGS;
const QR_CODE = 'qr-code' in ARGS;
const SKIP_BUILD = isCI || process.env.SKIP_BUILD || 'skip-build' in ARGS;
const SKIP_BUILD = process.env.SKIP_BUILD || 'skip-build' in ARGS;
const BROWSER_ALIAS = ARGS['browser-alias'];

const CLIENT_TESTS_PATH = 'test/client/fixtures';
Expand Down

0 comments on commit 71b8353

Please sign in to comment.