-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.0.5](v1.0.4...v1.0.5) (2025-01-09) ### Bug Fixes * **deps:** update dependency react-native to v0.76.6 ([#113](#113)) ([22f0da2](22f0da2))
- Loading branch information
1 parent
22f0da2
commit c19ad0f
Showing
2 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-native-screenshot-aware", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "React Native module for real-time screenshot detection on Android and iOS", | ||
"source": "src/index.tsx", | ||
"main": "lib/commonjs/index.js", | ||
|
@@ -87,20 +87,26 @@ | |
"react": "*", | ||
"react-native": "*" | ||
}, | ||
"workspaces": ["example"], | ||
"workspaces": [ | ||
"example" | ||
], | ||
"packageManager": "[email protected]", | ||
"jest": { | ||
"preset": "react-native", | ||
"modulePathIgnorePatterns": [ | ||
"<rootDir>/example/node_modules", | ||
"<rootDir>/lib/" | ||
], | ||
"setupFilesAfterEnv": ["<rootDir>/setupJest.ts"], | ||
"setupFilesAfterEnv": [ | ||
"<rootDir>/setupJest.ts" | ||
], | ||
"transform": { | ||
"^.+\\.(js)$": [ | ||
"babel-jest", | ||
{ | ||
"plugins": ["babel-plugin-syntax-hermes-parser"] | ||
"plugins": [ | ||
"babel-plugin-syntax-hermes-parser" | ||
] | ||
} | ||
] | ||
}, | ||
|
@@ -113,12 +119,18 @@ | |
"collectCoverage": true | ||
}, | ||
"commitlint": { | ||
"extends": ["@commitlint/config-conventional"] | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"react-native-builder-bob": { | ||
"source": "src", | ||
"output": "lib", | ||
"targets": ["commonjs", "module", "typescript"] | ||
"targets": [ | ||
"commonjs", | ||
"module", | ||
"typescript" | ||
] | ||
}, | ||
"codegenConfig": { | ||
"name": "ScreenshotAwareSpec", | ||
|