From 704ffa936cfcb0a56f180144c45c3fd907d4a60d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Wed, 26 Oct 2022 12:11:10 +0200 Subject: [PATCH] =?UTF-8?q?Supprime=20un=20fichier=20devenu=20inutile=20ou?= =?UTF-8?q?bli=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/scripts/get-cypress-packages.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 site/scripts/get-cypress-packages.js diff --git a/site/scripts/get-cypress-packages.js b/site/scripts/get-cypress-packages.js deleted file mode 100644 index 549ceb897..000000000 --- a/site/scripts/get-cypress-packages.js +++ /dev/null @@ -1,12 +0,0 @@ -import { readFileSync } from 'fs' - -const packages = JSON.parse( - readFileSync(new URL('../package.json', import.meta.url).pathname) -) - -console.log('cypress@' + packages.devDependencies.cypress) -for (const key of Object.keys(packages.devDependencies).filter( - (k) => k !== 'cypress' && k.startsWith('cypress') -)) { - console.log(key + '@' + packages.devDependencies[key]) -}