pkgbld 1.28.1 → 1.28.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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -825,7 +825,7 @@ async function processPackage(pkg, config, plugins) {
|
|
|
825
825
|
const file = sourceFileWithoutSuffix + suffix;
|
|
826
826
|
if (await isExists(file)) {
|
|
827
827
|
inputs.push(file);
|
|
828
|
-
inputsExt.set(
|
|
828
|
+
inputsExt.set(basename, suffix);
|
|
829
829
|
break;
|
|
830
830
|
}
|
|
831
831
|
}
|
|
@@ -870,7 +870,7 @@ async function writeJson(path, json) {
|
|
|
870
870
|
await fs.writeFile(path, toFormattedJson(json));
|
|
871
871
|
}
|
|
872
872
|
|
|
873
|
-
var version = "1.28.
|
|
873
|
+
var version = "1.28.2";
|
|
874
874
|
var name = "pkgbld";
|
|
875
875
|
var license = "MIT";
|
|
876
876
|
var author = "Konstantin Shutkin";
|
package/package.json
CHANGED