6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
// Copyright 2013 Lovell Fuller and others.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
'use strict';
|
|
|
|
const libvips = require('../lib/libvips');
|
|
|
|
try {
|
|
if (!(libvips.useGlobalLibvips() || libvips.hasVendoredLibvips())) {
|
|
process.exitCode = 1;
|
|
}
|
|
} catch (err) {
|
|
process.exitCode = 1;
|
|
}
|