From 2c0f87f0900fe61a5fe60baa2e220c2fb3008360 Mon Sep 17 00:00:00 2001 From: Michael Kreil Date: Tue, 21 Mar 2023 06:54:12 +0100 Subject: [PATCH] error -> log --- bin/process_styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/process_styles.js b/bin/process_styles.js index f8ecc81..4c47b1a 100755 --- a/bin/process_styles.js +++ b/bin/process_styles.js @@ -80,7 +80,7 @@ readdirSync(path).forEach(styleName => { if (!layer.paint) return; attributes.forEach(attribute => { if (!layer.paint[attribute]) return; - throw Error('implement "resolvedImage" checking'); + console.log('implement "resolvedImage" checking'); }) }) }