File tree Expand file tree Collapse file tree 8 files changed +12
-7
lines changed
packages/react-native-quick-crypto Expand file tree Collapse file tree 8 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 32
32
- ReactCommon/turbomodule/core
33
33
- Yoga
34
34
- OpenSSL-Universal (3.3.3001)
35
- - QuickCrypto (1.0.0-beta.19 ):
35
+ - QuickCrypto (1.0.0-beta.20 ):
36
36
- DoubleConversion
37
37
- glog
38
38
- hermes-engine
@@ -1976,7 +1976,7 @@ SPEC CHECKSUMS:
1976
1976
hermes-engine: 9e868dc7be781364296d6ee2f56d0c1a9ef0bb11
1977
1977
NitroModules: fdc6fcf8f397091615951004ae81022b759e27bc
1978
1978
OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2
1979
- QuickCrypto: 9c7a77723ec784730cb8104d0e165cd82ecbe054
1979
+ QuickCrypto: 108a3cec847d30cd9a465dc52a9c77bd0e01f98d
1980
1980
RCT-Folly: ea9d9256ba7f9322ef911169a9f696e5857b9e17
1981
1981
RCTDeprecation: ebe712bb05077934b16c6bf25228bdec34b64f83
1982
1982
RCTRequired: ca91e5dd26b64f577b528044c962baf171c6b716
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-quick-crypto-example" ,
3
- "version" : " 1.0.0-beta.19 " ,
3
+ "version" : " 1.0.0-beta.20 " ,
4
4
"private" : true ,
5
5
"type" : " module" ,
6
6
"scripts" : {
37
37
"react-native-bouncy-checkbox" : " 4.1.2" ,
38
38
"react-native-nitro-modules" : " 0.25.2" ,
39
39
"react-native-quick-base64" : " 2.2.0" ,
40
- "react-native-quick-crypto" : " 1.0.0-beta.19 " ,
40
+ "react-native-quick-crypto" : " 1.0.0-beta.20 " ,
41
41
"react-native-safe-area-context" : " 5.1.0" ,
42
42
"react-native-screens" : " 3.35.0" ,
43
43
"react-native-vector-icons" : " ^10.1.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.0.0-beta.19 " ,
2
+ "version" : " 1.0.0-beta.20 " ,
3
3
"type" : " module" ,
4
4
"scripts" : {
5
5
"clang-format" : " ./scripts/clang-format.sh" ,
Original file line number Diff line number Diff line change 1
1
# ts generated files
2
2
lib /*
3
+ build /*
3
4
4
5
# holding old code while we migrate to new architecture
5
6
zzz /*
Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ export default [
55
55
'.prettierrc.js' ,
56
56
'*.config.*js' ,
57
57
'*.plugin.js' ,
58
- '**/lib/**' ,
58
+ '**/lib/**' ,
59
+ '**/build/**' ,
59
60
'**/test/**' ] ,
60
61
} ,
61
62
] ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-quick-crypto" ,
3
- "version" : " 1.0.0-beta.19 " ,
3
+ "version" : " 1.0.0-beta.20 " ,
4
4
"description" : " A fast implementation of Node's `crypto` module written in C/C++ JSI" ,
5
5
"main" : " lib/commonjs/index" ,
6
6
"module" : " lib/module/index" ,
Original file line number Diff line number Diff line change 25
25
"verbatimModuleSyntax" : true ,
26
26
},
27
27
"include" : [" src/**/*.ts" ],
28
+ "exclude" : [" build/**" ]
28
29
}
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -e
4
+
3
5
echo " Starting the release process..."
4
6
echo " Provided options: $@ "
5
7
You can’t perform that action at this time.
0 commit comments