mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
* refactor(tauri.js): move command code into helpers * reafactor(tauri.js): move command helpers to api dir * fix(tauri.js/tests): import tauricon from proper dir * fix(tauri.js/tests): add api dir to moduleNameMapper
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
const { inject } = require('../template')
|
|
|
|
module.exports = args => {
|
|
return inject(args.directory, 'all', {
|
|
force: args.force,
|
|
logging: args.logging,
|
|
tauriPath: args.tauriPath
|
|
})
|
|
}
|