We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4989978 + 6a761fc commit a67320bCopy full SHA for a67320b
scripts/netlify-deploy.js
@@ -12,12 +12,13 @@ function logStdOut(opts) {
12
}
13
14
if (!process.env.NETLIFY_API_KEY || !process.env.NETLIFY_SITE_ID) {
15
- throw new Error(
+ console.warn(
16
'Both NETLIFY_API_KEY and NETLIFY_SITE_ID are required. ' +
17
'They can be found on ' +
18
'https://app.netlify.com/sites/autocompletejs-playgrounds/settings/general' +
19
' and https://app.netlify.com/account/applications'
20
);
21
+ process.exit(0);
22
23
24
execa('yarn', ['build'])
0 commit comments