We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4577bc commit 41abedfCopy full SHA for 41abedf
deploy/deployChangedPackages.mjs
@@ -55,11 +55,10 @@ const go = async () => {
55
upload = upload || npmDTSText !== generatedDTSContent;
56
} catch (error) {
57
// Could not find a previous build
58
- console.log(
59
- `Could not get the file ${file} inside the npm package ${pkgJSON.name} from unpkg at ${unpkgURL}`
60
- );
61
- process.exitCode = 1;
62
- upload = false;
+ console.log(`
+Could not get the file ${file} inside the npm package ${pkgJSON.name} from unpkg at ${unpkgURL}
+Assuming that this means we need to upload this package.`);
+ upload = true;
63
}
64
65
0 commit comments