chore/licenses (#1461)

This commit is contained in:
nothingismagick
2021-04-12 14:55:00 +02:00
committed by GitHub
parent 1e3ea186b8
commit 953289ca7f
11 changed files with 39 additions and 3 deletions

View File

@@ -176,7 +176,7 @@
]
},
"create-tauri-app": {
"path": "./cli/create-tauri-app",
"path": "./tooling/create-tauri-app",
"manager": "javascript",
"dependencies": [
"cli.js"

View File

@@ -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

View File

@@ -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.

View File

@@ -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;

View File

@@ -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 \

View File

@@ -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");

View File

@@ -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"
},

View File

@@ -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";

View File

@@ -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";

View File

@@ -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 (

View File

@@ -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,