jest/scripts/remove-prettier-dep.js

18 lines
458 B
JavaScript

/**
* 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.
*/
'use strict';
const {writeFileSync} = require('fs');
const pkg = require('../package.json');
const pkgPath = require.resolve('../package.json');
delete pkg.devDependencies.prettier;
writeFileSync(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`);