mirror of
https://github.com/strapi/strapi.git
synced 2025-09-15 03:27:19 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
process.argv.splice(2, 1);
|
||
|
|
||
|
const { join } = require('path');
|
||
|
const { Plop, run } = require('plop');
|
||
|
|
||
|
module.exports = () => {
|
||
|
Plop.launch({ configPath: join(__dirname, 'plopfile.js') }, run);
|
||
|
};
|