UNPKG

@nx/nuxt

Version:

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

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