diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3534407 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,16 @@ +# CODEOWNERS +# GitHub will automatically request reviews from these owners +# when a pull request modifies the matching files/paths. +# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +# Global owner — @utkarsh232005 is required reviewer for all files +* @utkarsh232005 + +# Workflow files +.github/ @utkarsh232005 + +# Core source +src/ @utkarsh232005 + +# Package config +package.json @utkarsh232005 diff --git a/.gitignore b/.gitignore index a54de93..47e1baa 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ dist/ *.log .env .npmrc -BLUEPRINT.md \ No newline at end of file +BLUEPRINT.md +./bin diff --git a/bin/kdm.js b/bin/kdm.js deleted file mode 100755 index 0277db3..0000000 --- a/bin/kdm.js +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env node - -import '../dist/index.js';