Skip to content

Commit

Permalink
Merge pull request #125 from edcrampin/patch-1
Browse files Browse the repository at this point in the history
Fix for react-native.config.js
  • Loading branch information
maxs15 committed Jul 30, 2019
2 parents 7e8463a + b1fa2e8 commit 1d52c56
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions react-native.config.js
@@ -1,5 +1,10 @@
module.exports = {
commands: {
prelink: "node ./node_modules/react-native-spinkit/scripts/rnpm-prelink.js",
},
commands: [
{
name: 'prelink',
func: () => {
exec("node ./node_modules/react-native-spinkit/scripts/rnpm-prelink.js");
},
},
],
};

0 comments on commit 1d52c56

Please sign in to comment.