UNPKG

scrivito

Version:

Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.

14 lines (10 loc) 263 B
// @rewire import { InternalError } from 'scrivito_sdk/common'; export function getScrivitoVersion(): string { const version = process.env.SCRIVITO_VERSION; if (!version) { // version info missing throw new InternalError(); } return version; }