Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .clang-format-ignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package/cpp/sqlite/*
packages/react-native-nitro-sqlite/cpp/sqlite/*
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ updates:

- package-ecosystem: 'gradle'
directories:
- '/package/android/'
- '/packages/react-native-nitro-sqlite/android/'
- '/example/android/'
schedule:
interval: 'daily'
Expand All @@ -20,7 +20,7 @@ updates:

- package-ecosystem: 'npm'
directories:
- '/package/'
- '/packages/react-native-nitro-sqlite/'
- '/example/'
schedule:
interval: 'daily'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
- "example/android/**"
- "**/nitrogen/generated/shared/**"
- "**/nitrogen/generated/android/**"
- "package/cpp/**"
- "package/android/**"
- "packages/react-native-nitro-sqlite/cpp/**"
- "packages/react-native-nitro-sqlite/android/**"
- "**/bun.lock"
- "**/react-native.config.js"
- "**/nitro.json"
Expand All @@ -20,8 +20,8 @@ on:
- "example/android/**"
- "**/nitrogen/generated/shared/**"
- "**/nitrogen/generated/android/**"
- "package/cpp/**"
- "package/android/**"
- "packages/react-native-nitro-sqlite/cpp/**"
- "packages/react-native-nitro-sqlite/android/**"
- "**/bun.lock"
- "**/react-native.config.js"
- "**/nitro.json"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
- "example/ios/**"
- "**/nitrogen/generated/shared/**"
- "**/nitrogen/generated/ios/**"
- "package/cpp/**"
- "package/ios/**"
- "packages/react-native-nitro-sqlite/cpp/**"
- "packages/react-native-nitro-sqlite/ios/**"
- "**/Podfile.lock"
- "**/*.podspec"
- "**/react-native.config.js"
Expand All @@ -21,8 +21,8 @@ on:
- "example/ios/**"
- "**/nitrogen/generated/shared/**"
- "**/nitrogen/generated/ios/**"
- "package/cpp/**"
- "package/ios/**"
- "packages/react-native-nitro-sqlite/cpp/**"
- "packages/react-native-nitro-sqlite/ios/**"
- "**/Podfile.lock"
- "**/*.podspec"
- "**/react-native.config.js"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
working-directory: example
run: bun lint
- name: Run ESLint with auto-fix in react-native-nitro-sqlite
working-directory: package
working-directory: packages/react-native-nitro-sqlite
run: bun lint

- name: Verify no files have changed after auto-fix
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*.md
*.markdown

package/lib
packages/react-native-nitro-sqlite/lib

.well-known
android
Expand Down
376 changes: 370 additions & 6 deletions bun.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,6 @@ npm-debug.log

# testing
/coverage

# react-native-harness generated runtime manifest
.harness/
Loading