From eef7c307ae52a751788d57cf5b7d4513663083e3 Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:04:12 +0000 Subject: [PATCH] cleanup(repo): remove unused scripts Removes a couple of unused/broken scripts from `rule-schema-to-typescript-types`. Also adds a missing nx target such that `generate-breaking-changes` works again. --- packages/eslint-plugin/project.json | 6 ++++++ packages/rule-schema-to-typescript-types/package.json | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/eslint-plugin/project.json b/packages/eslint-plugin/project.json index 56e47529dd19..b0c4616a3e29 100644 --- a/packages/eslint-plugin/project.json +++ b/packages/eslint-plugin/project.json @@ -7,6 +7,12 @@ "lint": { "executor": "@nx/eslint:lint", "outputs": ["{options.outputFile}"] + }, + "generate-breaking-changes": { + "executor": "nx:run-script", + "options": { + "script": "generate:breaking-changes" + } } } } diff --git a/packages/rule-schema-to-typescript-types/package.json b/packages/rule-schema-to-typescript-types/package.json index cbfed2a08dd5..2aeda29240b4 100644 --- a/packages/rule-schema-to-typescript-types/package.json +++ b/packages/rule-schema-to-typescript-types/package.json @@ -26,8 +26,6 @@ "scripts": { "build": "tsc -b tsconfig.build.json", "format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore", - "generate-contributors": "tsx ./src/generate-contributors.ts", - "generate-sponsors": "tsx ./src/generate-sponsors.ts", "lint": "npx nx lint", "postinstall-script": "tsx ./src/postinstall.ts", "check-types": "npx nx typecheck"