threepipe
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

each-plugin.mjs 326B

il y a 1 an
il y a 2 ans
il y a 2 ans
il y a 1 an
123456789
  1. import {execEachPlugin} from './utils.mjs';
  2. const command = process.argv.slice(2).join(' ')
  3. if(!command) throw new Error('Command is required')
  4. console.log(`Executing '${command}' in all plugins`)
  5. // Each plugin should have "prepare" that will also build the plugin
  6. execEachPlugin(`npm ${command}`) // install dependencies