Last active
August 22, 2022 13:36
-
-
Save mryechkin/a80a22bb2651bde70c9aa2fb4d925bc5 to your computer and use it in GitHub Desktop.
Revisions
-
mryechkin revised this gist
Aug 21, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if (dependencies && dependencies.length) { const filteredList = ['@wtf-ds/core', 'react', 'styled-components']; promises = filteredList.map(async (name) => { const { stdout } = await exec(`npm list --depth=0 ${name} | grep ${name}`); const idx = stdout.indexOf(name); const version = stdout.substring(idx + name.length + 1).replace('\n', ''); -
mryechkin created this gist
Aug 20, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ const fs = require('fs'); const util = require('util'); const exec = util.promisify(require('child_process').exec); const package = require('../package.json'); const dependencies = Object.keys(packageData.dependencies).map((dep) => dep); let promises = []; if (dependencies && dependencies.length) { const filteredList = ['@wtf-ds/core', 'react', 'styled-components']; promises = filteredList.map(async (name) => { const { stdout } = await exec(`npm list --depth=0 ${name}`); const idx = stdout.indexOf(name); const version = stdout.substring(idx + name.length + 1).replace('\n', ''); return { name, version }; }); } Promise.all(promises).then((result) => { const data = JSON.stringify(result, null, 2); fs.writeFileSync('dependencies.json', data); });