UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

9 lines (8 loc) 382 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.assertSupportedNextVersion = assertSupportedNextVersion; const internal_1 = require("@nx/devkit/internal"); const versions_1 = require("./versions"); function assertSupportedNextVersion(tree) { (0, internal_1.assertSupportedPackageVersion)(tree, 'next', versions_1.minSupportedNextVersion); }