tauri/tooling/create-tauri-app/bin/create-tauri-app.js
Jacob Bolda c3acbd68ec
chore: shift CTA from bin to .ts (#1651)
* chore: shift CTA from bin to .ts

* add change file

* fix rollup build
2021-04-29 08:55:09 -05:00

11 lines
289 B
JavaScript
Executable File

#!/usr/bin/env node
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
const { createTauriApp } = require('../dist/')
createTauriApp(process.argv.slice(2)).catch((err) => {
console.error(err)
})