create-react-native-library
Advanced tools
Comparing version 0.45.2 to 0.45.3
{ | ||
"name": "create-react-native-library", | ||
"version": "0.45.2", | ||
"version": "0.45.3", | ||
"description": "CLI to scaffold React Native libraries", | ||
@@ -68,3 +68,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "2f8ae32f45924f4de087c9b9a574a619811ea76d" | ||
"gitHead": "9c5638a224d558071ae01f010da8b7a6860f00ee" | ||
} |
@@ -28,4 +28,10 @@ const path = require('path'); | ||
root: path.join(__dirname, '..'), | ||
platforms: { | ||
// Codegen script incorrectly fails without this | ||
// So we explicitly specify the platforms with empty object | ||
ios: {}, | ||
android: {}, | ||
}, | ||
}, | ||
}, | ||
}; |
3546503
15162