bunchee 6.0.1 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.js +2 -2
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -425,7 +425,7 @@ function validateFilesField(packageJson) {
|
|
|
425
425
|
}
|
|
426
426
|
state.missingFiles = exportedPaths.filter((exportPath)=>{
|
|
427
427
|
// Special case for package.json
|
|
428
|
-
if (exportPath === '
|
|
428
|
+
if (exportPath === 'package.json') {
|
|
429
429
|
return false;
|
|
430
430
|
}
|
|
431
431
|
return !matchFile(filesField, exportPath);
|
|
@@ -614,7 +614,7 @@ function lint$1(pkg) {
|
|
|
614
614
|
}
|
|
615
615
|
}
|
|
616
616
|
|
|
617
|
-
var version = "6.0.
|
|
617
|
+
var version = "6.0.2";
|
|
618
618
|
|
|
619
619
|
async function writeDefaultTsconfig(tsConfigPath) {
|
|
620
620
|
await fs.promises.writeFile(tsConfigPath, JSON.stringify(DEFAULT_TS_CONFIG, null, 2), 'utf-8');
|