publish configs

This commit is contained in:
EthanShoeDev
2025-10-07 20:48:24 -04:00
parent 26c5bb8332
commit 57765da5e8
4 changed files with 52 additions and 13 deletions

View File

@@ -0,0 +1,31 @@
# Workspace caches
.turbo/
# Node modules (npm excludes by default)
node_modules/
# OS junk
**/.DS_Store
# Platform build outputs and local config
ios/build/
android/build/
android/gradle/
android/gradlew
android/gradlew.bat
android/local.properties
# Tests and mocks
**/__tests__/
**/__fixtures__/
**/__mocks__/
# Dotfiles and editors
**/.*
.vscode/
.idea/
# Coverage and logs
coverage/
*.log
*.local

View File

@@ -22,17 +22,7 @@
"cpp",
"*.podspec",
"react-native.config.js",
"LICENSE",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
"LICENSE"
],
"scripts": {
"fmt": "cross-env SORT_IMPORTS=true prettier --write .",

View File

@@ -0,0 +1,20 @@
# Exclude build and workspace caches not meant for publication
.turbo/
# Node modules should never be packed (npm ignores it by default, but explicit is fine)
node_modules/
# OS cruft
**/.DS_Store
# Keep dist outputs and sources; do not exclude them here
# dist/
# dist-internal/
# src/
# Common ignores that shouldn't ship
coverage/
.vscode/
.idea/
*.log
*.local

View File

@@ -8,8 +8,6 @@
"src",
"dist",
"dist-internal",
"!node_modules",
"!.turbo",
"*"
],
"exports": {