-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow to define licenses in root package.json (#68jvq7)
- Loading branch information
1 parent
e7e7112
commit bc5978a
Showing
6 changed files
with
47 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,30 @@ | |
"exposedotenv": "env $(cat ./common/.env-default | xargs) env $(cat ./.env 2>/dev/null | xargs)", | ||
"preversion": "(test \"${CI_JOB_NAME}\" != \"semver\" && WORKSPACE_COMMAND=\"yarn --silent grunt composer:disclaimer\" yarn --silent workspace:concurrently && lerna exec --concurrency 1 -- yarn grunt yarn:disclaimer && git add \"*LICENSE_3RD_PARTY*\") || :" | ||
}, | ||
"license-check": { | ||
"spdx": [ | ||
"MIT", | ||
"ISC", | ||
"BSD-2-Clause", | ||
"BSD-3-Clause", | ||
"Apache-2.0", | ||
"Artistic-2.0", | ||
"WTFPL", | ||
"CC-0", | ||
"CC0-1.0", | ||
"MPL-2.0", | ||
"ZLib", | ||
"Unlicense", | ||
"GPL-2.0", | ||
"GPL-2.0-or-later", | ||
"GPL-3", | ||
"GPL-3.0-or-later", | ||
"LGPL-3.0-or-later" | ||
], | ||
"packages": [ | ||
"[email protected]" | ||
] | ||
}, | ||
"lerna": { | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,25 +80,7 @@ | |
] | ||
}, | ||
"license-check": { | ||
"spdx": [ | ||
"MIT", | ||
"ISC", | ||
"BSD-2-Clause", | ||
"BSD-3-Clause", | ||
"Apache-2.0", | ||
"Artistic-2.0", | ||
"WTFPL", | ||
"CC-0", | ||
"CC0-1.0", | ||
"MPL-2.0", | ||
"ZLib", | ||
"Unlicense", | ||
"GPL-2.0", | ||
"GPL-2.0-or-later", | ||
"GPL-3", | ||
"GPL-3.0-or-later", | ||
"LGPL-3.0-or-later" | ||
], | ||
"spdx": [], | ||
"packages": [ | ||
"[email protected]" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,25 +53,7 @@ | |
}, | ||
"phpunit-coverage-threshold": 80, | ||
"license-check": { | ||
"spdx": [ | ||
"MIT", | ||
"ISC", | ||
"BSD-2-Clause", | ||
"BSD-3-Clause", | ||
"Apache-2.0", | ||
"Artistic-2.0", | ||
"WTFPL", | ||
"CC-0", | ||
"CC0-1.0", | ||
"MPL-2.0", | ||
"ZLib", | ||
"Unlicense", | ||
"GPL-2.0", | ||
"GPL-2.0-or-later", | ||
"GPL-3", | ||
"GPL-3.0-or-later", | ||
"LGPL-3.0-or-later" | ||
], | ||
"spdx": [], | ||
"packages": [ | ||
"[email protected]" | ||
] | ||
|