From 5a02e8b4b09880ef8d845faa494d2ce487b22ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Vanvelthem?= Date: Mon, 5 Apr 2021 12:49:11 +0200 Subject: [PATCH] feat: add MIT license --- LICENSE | 21 +++++++++++++++++++++ apps/blog-app/LICENSE | 21 +++++++++++++++++++++ apps/blog-app/package.json | 14 ++++++++++++-- apps/web-app/LICENSE | 21 +++++++++++++++++++++ apps/web-app/package.json | 14 ++++++++++++-- package.json | 17 +++++++++++++++++ packages/bar/LICENSE | 21 +++++++++++++++++++++ packages/bar/package.json | 12 +++++++++++- packages/foo/LICENSE | 21 +++++++++++++++++++++ packages/foo/package.json | 12 +++++++++++- 10 files changed, 168 insertions(+), 6 deletions(-) create mode 100644 LICENSE create mode 100644 apps/blog-app/LICENSE create mode 100644 apps/web-app/LICENSE create mode 100644 packages/bar/LICENSE create mode 100644 packages/foo/LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000000..b6a78d62232 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Sébastien Vanvelthem + +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/apps/blog-app/LICENSE b/apps/blog-app/LICENSE new file mode 100644 index 00000000000..b6a78d62232 --- /dev/null +++ b/apps/blog-app/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Sébastien Vanvelthem + +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/apps/blog-app/package.json b/apps/blog-app/package.json index 4ab645f32ef..47b8cd6bbdb 100644 --- a/apps/blog-app/package.json +++ b/apps/blog-app/package.json @@ -1,7 +1,18 @@ { "name": "blog-app", "version": "1.0.0", + "license": "MIT", "private": true, + "homepage": "https://github.com/belgattitude/nextjs-monorepo-example", + "repository": { + "type": "git", + "url": "https://github.com/belgattitude/nextjs-monorepo-example", + "directory": "apps/blog-app" + }, + "author": { + "name": "Vanvelthem Sébastien", + "url": "https://github.com/belgattitude" + }, "scripts": { "dev": "next", "build": "next build", @@ -25,6 +36,5 @@ "next": "^10.0.9", "react": "^17.0.2", "react-dom": "^17.0.2" - }, - "license": "ISC" + } } diff --git a/apps/web-app/LICENSE b/apps/web-app/LICENSE new file mode 100644 index 00000000000..b6a78d62232 --- /dev/null +++ b/apps/web-app/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Sébastien Vanvelthem + +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/apps/web-app/package.json b/apps/web-app/package.json index 66abcdf0dd2..95a08a79b99 100644 --- a/apps/web-app/package.json +++ b/apps/web-app/package.json @@ -1,7 +1,18 @@ { "name": "web-app", "version": "1.0.0", + "license": "MIT", "private": true, + "homepage": "https://github.com/belgattitude/nextjs-monorepo-example", + "repository": { + "type": "git", + "url": "https://github.com/belgattitude/nextjs-monorepo-example", + "directory": "apps/web-app" + }, + "author": { + "name": "Vanvelthem Sébastien", + "url": "https://github.com/belgattitude" + }, "scripts": { "dev": "next", "build": "next build", @@ -26,6 +37,5 @@ "next": "^10.0.9", "react": "^17.0.2", "react-dom": "^17.0.2" - }, - "license": "ISC" + } } diff --git a/package.json b/package.json index 2f97bfa6c93..1d30ce2b546 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,22 @@ { + "name": "nextjs-monorepo-example", + "license": "MIT", "private": true, + "homepage": "https://github.com/belgattitude/nextjs-monorepo-example", + "repository": { + "type": "git", + "url": "https://github.com/belgattitude/nextjs-monorepo-example" + }, + "author": { + "name": "Vanvelthem Sébastien", + "url": "https://github.com/belgattitude" + }, + "keywords": [ + "example", + "workspace", + "nextjs", + "next-transpile-modules" + ], "workspaces": [ "apps/*", "packages/*" diff --git a/packages/bar/LICENSE b/packages/bar/LICENSE new file mode 100644 index 00000000000..b6a78d62232 --- /dev/null +++ b/packages/bar/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Sébastien Vanvelthem + +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/bar/package.json b/packages/bar/package.json index 1687068703e..6ec1e15eefa 100644 --- a/packages/bar/package.json +++ b/packages/bar/package.json @@ -1,8 +1,18 @@ { "name": "@optional-package-scope/bar", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "private": true, + "homepage": "https://github.com/belgattitude/nextjs-monorepo-example", + "repository": { + "type": "git", + "url": "https://github.com/belgattitude/nextjs-monorepo-example", + "directory": "packages/bar" + }, + "author": { + "name": "Vanvelthem Sébastien", + "url": "https://github.com/belgattitude" + }, "source": "src/index.ts", "main": "dist/bar.js", "module": "dist/bar.module.js", diff --git a/packages/foo/LICENSE b/packages/foo/LICENSE new file mode 100644 index 00000000000..b6a78d62232 --- /dev/null +++ b/packages/foo/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2021 Sébastien Vanvelthem + +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/foo/package.json b/packages/foo/package.json index bd8c7643d32..33fa99a0528 100644 --- a/packages/foo/package.json +++ b/packages/foo/package.json @@ -1,8 +1,18 @@ { "name": "@optional-package-scope/foo", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "private": true, + "homepage": "https://github.com/belgattitude/nextjs-monorepo-example", + "repository": { + "type": "git", + "url": "https://github.com/belgattitude/nextjs-monorepo-example", + "directory": "packages/foo" + }, + "author": { + "name": "Vanvelthem Sébastien", + "url": "https://github.com/belgattitude" + }, "main": "./src/index.ts", "scripts": { "typecheck": "tsc -p ./ --noEmit",