Sha256: 38693339b2f839884d601b64d39e7e8e32147f372299aa5f057fb180c6f06b19

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

'use strict';

Object.defineProperty(exports, '__esModule', {
  value: true
});
exports.default = getProjectNamesMissingWarning;

function _chalk() {
  const data = _interopRequireDefault(require('chalk'));

  _chalk = function () {
    return data;
  };

  return data;
}

var _getProjectDisplayName = _interopRequireDefault(
  require('./getProjectDisplayName')
);

function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : {default: obj};
}

/**
 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
function getProjectNamesMissingWarning(projectConfigs) {
  const numberOfProjectsWithoutAName = projectConfigs.filter(
    config => !(0, _getProjectDisplayName.default)(config)
  ).length;

  if (numberOfProjectsWithoutAName === 0) {
    return undefined;
  }

  return _chalk().default.yellow(
    `You provided values for --selectProjects but ${
      numberOfProjectsWithoutAName === 1
        ? 'a project does not have a name'
        : `${numberOfProjectsWithoutAName} projects do not have a name`
    }.\n` +
      'Set displayName in the config of all projects in order to disable this warning.\n'
  );
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-0.27.1 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js
decidim-0.26.4 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js
decidim-0.27.0 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js
decidim-0.26.3 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js
decidim-0.27.0.rc2 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js
decidim-0.27.0.rc1 packages/webpacker/node_modules/@jest/core/build/getProjectNamesMissingWarning.js