Supprime un fichier devenu inutile oublié

pull/2365/head
Jérémy Rialland 2022-10-26 12:11:10 +02:00 committed by Jérémy Rialland
parent 5abfb8d6d9
commit 704ffa936c
1 changed files with 0 additions and 12 deletions

View File

@ -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])
}