From 48f68a5b4f47622ecfe38441b6e068f2c8a94b38 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 5 Jan 2022 22:54:40 +0100 Subject: [PATCH] chore: remove unused script --- scripts/remove-prettier-dep.js | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 scripts/remove-prettier-dep.js diff --git a/scripts/remove-prettier-dep.js b/scripts/remove-prettier-dep.js deleted file mode 100644 index 9675ba9ee14f..000000000000 --- a/scripts/remove-prettier-dep.js +++ /dev/null @@ -1,17 +0,0 @@ -/** - * 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`);