We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3640e1 commit e712c85Copy full SHA for e712c85
scripts/collector.js
@@ -15,6 +15,12 @@ const IGNORED_FILES = [
15
const ERROR_FILES = [];
16
const COMPLETED_FILES = [];
17
18
+if (process.env.target && !process.env.GOOGLE_MAPS_API_KEY) {
19
+ throw new Error(
20
+ "GOOGLE_MAPS_API_KEY environment variable must be set when not uploading locally. See mappings/MapView.ts"
21
+ );
22
+}
23
+
24
async function main(list = []) {
25
console.log("Running on", getUrl());
26
0 commit comments