Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CODEOWNERS file for @girs/types repository
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# Critical infrastructure files - require review from core maintainers
/.github/** @JumpLink @ewlsh
/package.json @JumpLink @ewlsh

# Package configurations - critical for npm releases
/**/package.json @JumpLink @ewlsh

# CODEOWNERS file itself - only core maintainers can change
/.github/CODEOWNERS @JumpLink @ewlsh

2 changes: 2 additions & 0 deletions .github/release-script/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
build/
33 changes: 33 additions & 0 deletions .github/release-script/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .github/release-script/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "release-script",
"version": "1.0.0",
"main": "build/index.js",
"scripts": {
"build": "tsc"
},
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/node": "^24.3.0"
}
}
Loading