@koober/plop-react-native-appicon
v1.0.4
Published
PlopJS plugin for generating app icon
Downloads
5
Readme
Plop Documentation plugin (@koober/plop-react-native-appicon)
PlopJS plugin for generating app icon
Installation
npm install --save-dev @koober/plop-react-native-appicon
Usage
In the plopfile.js
of your project
// @ts-check
const { PlopPlugin } = require('@koober/plop-plugin');
const PlopRNIcon = require('@koober/plop-react-native-appicon');
module.exports = (
/** @type {import('@koober/plop-plugin').PlopModule} */
plop
) => {
// apply
PlopPlugin.apply(
plop,
// Combine all plugins
PlopPlugin.compose(
// ...other plugins
PlopRNIcon.default(plop, {
projectName: 'RNAppExample',
})
// ...other plugins
)
);
};
License
MIT © Julien Polo [email protected]