Skip to content

Commit 2a30d8d

Browse files
authored
Refactor CLIs into using a shared utility package (#241)
* Add cli-util package * Use cli-util in all CLIs * Add changeset * Reverting f82239c
1 parent 2ecf894 commit 2a30d8d

35 files changed

+657
-963
lines changed

.changeset/fresh-nails-repair.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"gyp-to-cmake": patch
3+
"cmake-rn": patch
4+
"ferric-cli": patch
5+
"react-native-node-api": patch
6+
---
7+
8+
Refactored CLIs to use a shared utility package

configs/tsconfig.cli.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "@tsconfig/node22/tsconfig.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"declarationMap": true,
6+
"outDir": "${configDir}/dist",
7+
"rootDir": "${configDir}/src",
8+
"types": ["node"]
9+
},
10+
"include": ["${configDir}/src/*.ts"],
11+
"exclude": ["${configDir}/**.test.ts"]
12+
}

0 commit comments

Comments
 (0)