Skip to content

Commit f6065fd

Browse files
committed
Log a warning if ~/.jsvu/status.json contains chakra
Issue: #157, #160
1 parent a21d980 commit f6065fd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cli.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ const promptEngines = () => {
208208
// Install the desired JavaScript engines.
209209
const updateEngine = require('./shared/engine.js');
210210
for (const engine of status.engines) {
211+
if (engine === 'chakra') {
212+
console.warn('Chakra is no longer supported. https://github.com/GoogleChromeLabs/jsvu/issues/160');
213+
continue;
214+
}
211215
await updateEngine({
212216
status: status,
213217
...require(`./engines/${engine}/index.js`),

0 commit comments

Comments
 (0)