Skip to content

Commit 5a04b19

Browse files
committedOct 16, 2022
fix: handle license file next to license directory
1 parent 64edee9 commit 5a04b19

File tree

6 files changed

+60
-3
lines changed

6 files changed

+60
-3
lines changed
 

‎src/license-plugin.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,11 @@ class LicensePlugin {
190190
const cwd = this._cwd || process.cwd();
191191
const absolutePath = path.join(dir, '[lL][iI][cC][eE][nN][cCsS][eE]*');
192192
const relativeToCwd = path.relative(cwd, absolutePath);
193-
const licenseFile = this._findGlob(relativeToCwd, cwd)[0];
194-
// Add the license text if a license file exists
195-
if (fs.existsSync(licenseFile) && fs.lstatSync(licenseFile).isFile()) {
193+
const licenseFile = this._findGlob(relativeToCwd, cwd).find((file) => (
194+
fs.existsSync(file) && fs.lstatSync(file).isFile()
195+
));
196+
197+
if (licenseFile) {
196198
pkg.licenseText = fs.readFileSync(licenseFile, 'utf-8');
197199
}
198200

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/**
2+
* The MIT License (MIT)
3+
*
4+
* Copyright (c) 2016-2020 Mickael Jeanroy
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
*/
24+
25+
console.log('fake-package');
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
license.md file
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
license/index.md file
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "fake-package",
3+
"version": "1.0.0",
4+
"description": "Fake package used in unit tests",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "Mickael Jeanroy <mickael.jeanroy@gmail.com>",
10+
"license": "MIT",
11+
"private": true,
12+
"dependencies": {
13+
"lodash": "*"
14+
}
15+
}

‎test/license-plugin.spec.js

+13
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,19 @@ describe('LicensePlugin', () => {
204204
});
205205
});
206206

207+
it('should load pkg and find license file instead of directory', () => {
208+
const id = path.join(__dirname, 'fixtures', 'fake-package-10', 'src', 'index.js');
209+
210+
plugin.scanDependency(id);
211+
212+
expect(addDependency).toHaveBeenCalled();
213+
expect(plugin._dependencies).toEqual({
214+
'fake-package': Object.assign(fakePackage, {
215+
licenseText: 'license.md file',
216+
}),
217+
});
218+
});
219+
207220
it('should load pkg including license text from license.md file ignoring case of license file', () => {
208221
const id = path.join(__dirname, 'fixtures', 'fake-package-8', 'src', 'index.js');
209222

0 commit comments

Comments
 (0)
Please sign in to comment.