UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

15 lines (14 loc) 629 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.componentStoryGenerator = componentStoryGenerator; const devkit_1 = require("@nx/devkit"); const react_1 = require("@nx/react"); /** * @deprecated This would be a direct pass through to @nx/react:component-story generator. * TODO (@xiongemi): remove this generator for v19 */ async function componentStoryGenerator(host, schema) { devkit_1.logger.warn(`Please run 'nx run @nx/react:component-story ${schema.project}' instead.`); return (0, react_1.componentStoryGenerator)(host, schema); } exports.default = componentStoryGenerator;