From 37b85cfc9ccf46ff5cd52f0ed5f3c99178722066 Mon Sep 17 00:00:00 2001 From: shimks Date: Tue, 27 Mar 2018 16:54:48 -0400 Subject: [PATCH] fix(cli): remove automatic license generation --- .../cli/generators/project/templates/LICENSE | 24 ------------------- .../project/templates/package.json.ejs | 2 +- .../project/templates/package.plain.json.ejs | 2 +- 3 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 packages/cli/generators/project/templates/LICENSE diff --git a/packages/cli/generators/project/templates/LICENSE b/packages/cli/generators/project/templates/LICENSE deleted file mode 100644 index beb40ef64fd3..000000000000 --- a/packages/cli/generators/project/templates/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -Node module: <%= project.name %> -This project is licensed under the MIT License, full text below. - --------- - -MIT license - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/packages/cli/generators/project/templates/package.json.ejs b/packages/cli/generators/project/templates/package.json.ejs index 95f985db6d1c..cede965836dd 100644 --- a/packages/cli/generators/project/templates/package.json.ejs +++ b/packages/cli/generators/project/templates/package.json.ejs @@ -52,7 +52,7 @@ "private": true, <% } -%> "author": "", - "license": "MIT", + "license": "", "files": [ "README.md", "index.js", diff --git a/packages/cli/generators/project/templates/package.plain.json.ejs b/packages/cli/generators/project/templates/package.plain.json.ejs index cb3880674f3d..67493469c945 100644 --- a/packages/cli/generators/project/templates/package.plain.json.ejs +++ b/packages/cli/generators/project/templates/package.plain.json.ejs @@ -52,7 +52,7 @@ "private": true, <% } -%> "author": "", - "license": "MIT", + "license": "", "files": [ "README.md", "index.js",