init.js 198 B

123456789
  1. const { inject } = require('../template')
  2. module.exports = args => {
  3. return inject(args.directory, 'all', {
  4. force: args.force,
  5. logging: args.logging,
  6. tauriPath: args.tauriPath
  7. })
  8. }