{
  "name": "native-federation-tests",
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "packages/native-federation-tests/src",
  "projectType": "library",
  "tags": ["type:pkg"],
  "implicitDependencies": [],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{workspaceRoot}/packages/native-federation-tests/dist"],
      "options": {
        "parallel": false,
        "commands": [
          "tsup --config packages/native-federation-tests/tsup.config.ts",
          "cp packages/native-federation-tests/package.json packages/native-federation-tests/dist",
          "cp packages/native-federation-tests/*.md packages/native-federation-tests/dist"
        ]
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["packages/native-federation-tests/**/*.ts"]
      }
    },
    "test": {
      "executor": "@nx/vite:test",
      "outputs": ["{workspaceRoot}/coverage/packages/native-federation-tests"]
    },
    "pre-release": {
      "executor": "nx:run-commands",
      "options": {
        "parallel": false,
        "commands": [
          {
            "command": "nx run native-federation-tests:test",
            "forwardAllArgs": false
          },
          {
            "command": "nx run native-federation-tests:build",
            "forwardAllArgs": false
          }
        ]
      }
    }
  }
}
