https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8 9
const glob = require('fast-glob') const path = require('path') const childProcess = require('child_process') const fixtures = glob.sync('tests/fixtures/*/package.json') for (let fixture of fixtures) { childProcess.execSync('npm install', { cwd: path.dirname(fixture) }) }