UNPKG

744 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', {
4 value: true
5});
6exports.default = void 0;
7
8/**
9 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
10 *
11 * This source code is licensed under the MIT license found in the
12 * LICENSE file in the root directory of this source tree.
13 */
14const modifyPackageJson = ({projectPackageJson, shouldModifyScripts}) => {
15 if (shouldModifyScripts) {
16 projectPackageJson.scripts
17 ? (projectPackageJson.scripts.test = 'jest')
18 : (projectPackageJson.scripts = {
19 test: 'jest'
20 });
21 }
22
23 delete projectPackageJson.jest;
24 return JSON.stringify(projectPackageJson, null, 2) + '\n';
25};
26
27var _default = modifyPackageJson;
28exports.default = _default;