mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 15:42:00 +03:00
c3acbd68ec
* chore: shift CTA from bin to .ts * add change file * fix rollup build
11 lines
289 B
JavaScript
Executable File
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)
|
|
})
|