UNPKG

@ipp/cli

Version:

An image build orchestrator for the modern web

24 lines (23 loc) 938 B
"use strict"; /** * Image Processing Pipeline - Copyright (c) Marcus Cemes * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.BYPASS_VARIABLE = exports.FORKED_VARIABLE = exports.DEFAULT_LIBUV_THREADPOOL = exports.REPOSITORY_SHORT = exports.REPOSITORY = exports.VERSION = void 0; /** Keep synced with package.json */ exports.VERSION = "1.3.1"; /** Keep synced with package.json */ exports.REPOSITORY = "https://github.com/MarcusCemes/image-processing-pipeline"; /** Permalink for documentation */ exports.REPOSITORY_SHORT = "https://git.io/JJZdv"; /** * The number of threads available with libuv by default * * http://docs.libuv.org/en/v1.x/threadpool.html */ exports.DEFAULT_LIBUV_THREADPOOL = 4; exports.FORKED_VARIABLE = "IPP_FORKED"; exports.BYPASS_VARIABLE = "IPP_NO_FORK";