mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
chore/licenses (#1461)
This commit is contained in:
@@ -176,7 +176,7 @@
|
||||
]
|
||||
},
|
||||
"create-tauri-app": {
|
||||
"path": "./cli/create-tauri-app",
|
||||
"path": "./tooling/create-tauri-app",
|
||||
"manager": "javascript",
|
||||
"dependencies": [
|
||||
"cli.js"
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
cd tooling/api
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
@ECHO OFF
|
||||
|
||||
REM Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
REM SPDX-License-Identifier: Apache-2.0
|
||||
REM SPDX-License-Identifier: MIT
|
||||
|
||||
ECHO Make EXE From BAT
|
||||
ECHO.
|
||||
ECHO.
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
//! The Tauri API interface.
|
||||
#![warn(missing_docs)]
|
||||
// #![feature(const_int_pow)]
|
||||
|
||||
/// The App API module allows you to manage application processes.
|
||||
pub mod app;
|
||||
|
||||
@@ -1,8 +1,14 @@
|
||||
# Shorthand Commands
|
||||
|
||||
<!--
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
-->
|
||||
|
||||
## prepare
|
||||
|
||||
> Setup all stuffs needed for running the examples
|
||||
> Setup all stuff needed for running the examples
|
||||
|
||||
```sh
|
||||
git clone --recursive git@github.com:tauri-apps/examples.git \
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
#!/usr/bin/env node
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
const parseArgs = require("minimist");
|
||||
const inquirer = require("inquirer");
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"create-tauri-app": "./bin/create-tauri-app.js"
|
||||
},
|
||||
"repository": "git+https://github.com/tauri-apps/tauri.git",
|
||||
"license": "MIT",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tauri-apps/tauri/issues"
|
||||
},
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import { ManagementType, Result } from "./types/deps";
|
||||
import { shell } from "./shell";
|
||||
import { existsSync } from "fs";
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import { map, find } from "lodash";
|
||||
import { TauriBuildConfig } from "./types/config";
|
||||
import { reactjs, reactts } from "./recipes/react";
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import execa from "execa";
|
||||
|
||||
export const shell = async (
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
export enum ManagementType {
|
||||
Install,
|
||||
InstallDev,
|
||||
|
||||
Reference in New Issue
Block a user