mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
27 lines
574 B
JavaScript
27 lines
574 B
JavaScript
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import {
|
|
installDependencies,
|
|
updateDependencies
|
|
} from '../dist/api/dependency-manager.js'
|
|
|
|
async function run() {
|
|
const choice = process.argv[2]
|
|
if (choice === 'install') {
|
|
await installDependencies()
|
|
} else if (choice === 'update') {
|
|
await updateDependencies()
|
|
} else {
|
|
console.log(`
|
|
Description
|
|
Tauri dependency management script
|
|
Usage
|
|
$ tauri deps [install|update]
|
|
`)
|
|
}
|
|
}
|
|
|
|
run()
|