File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11# Version History
2+
3+ v6.0.1
4+ 1 . Add missing error function to plugin.
5+
26v6.0.0
37 1 . Added RNW>=0.62 WinRT CPP implementation thanks to tsytsarkin (https://github.com/andpor/react-native-sqlite-storage/pull/461 )
48 2 . Fix xcode 12 compatibility (https://github.com/andpor/react-native-sqlite-storage/pull/447 )
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ plugin.warn = function(...messages) {
9999 console . warn ( ...messages )
100100}
101101
102+ plugin . error = function ( ...messages ) {
103+ console . error ( ...messages )
104+ }
105+
102106SQLitePlugin = function ( openargs , openSuccess , openError ) {
103107 var dbname ;
104108 if ( ! ( openargs && openargs [ "name" ] ) ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-sqlite-storage" ,
3- "version" : " 6.0.0 " ,
3+ "version" : " 6.0.1 " ,
44 "description" : " SQLite3 bindings for React Native (Android & iOS)" ,
55 "main" : " sqlite.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments