UNPKG

@nx/rollup

Version:

The Nx Plugin for Rollup contains executors and generators that support building applications using Rollup.

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