UNPKG

@nx/remix

Version:

The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook. - Generators for applica

40 lines (39 loc) 1.33 kB
{ "name": "remix", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/remix/src", "projectType": "library", "targets": { "build": { "outputs": ["{workspaceRoot}/dist/packages/remix/README.md"], "command": "node ./scripts/copy-readme.js remix" }, "legacy-post-build": { "executor": "@nx/workspace-plugin:legacy-post-build", "options": { "tsConfig": "./tsconfig.lib.json", "assets": [ "packages/remix/*.md", { "input": "./packages/remix/src", "glob": "**/!(*.ts)", "output": "./src" }, { "input": "./packages/remix/src", "glob": "**/*.d.ts", "output": "./src" }, { "input": "./packages/remix", "glob": "**.json", "output": ".", "ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"] }, "LICENSE" ] } } }, "tags": [] }