plop icon indicating copy to clipboard operation
plop copied to clipboard

Consistency Made Simple

Results 100 plop issues
Sort by recently updated
recently updated
newest added

Currently, if I'm inside of a `plop action` and want to run a `add` or `addMany`, my option is really reduced to making a new generator and running the generator's...

enhancement

I'm seeing the same issue that was marked closed in [#178](https://github.com/plopjs/plop/issues/178). Opening a new issue here to track the problem. I'm running plop v2.5.3 and seeing the same issue (using...

bug

I'm going to be soon introducing the ability to plop an entire project codebase and I want to throw out the approach I'm currently considering for feedback. My plan is...

enhancement

In custom action, it should be possible to call an array of other actions. e.g. ``` plop.setActionType('component-with-tests-and-stories', (answers, config) => { return plop.executeActions([ { type: 'add', path: "./components/{{name}}.js", templateFile: config.componentTemplate...

enhancement
in progress

I want to append a template in my code, but when I use {{dashcase name} in '[]',throw a error: `" Invalid regular expression: /xxx/: Range out of order in character...

I want to do a function to upgrade one project, for this I need to create a temporary project first, and then move the content of this project from the...

In order to address #345 I added a check for an empty value in the `checkbox` bypass. ```javascript if (v === "") { return []; } ``` I think this...

resolves #351 by treating the templateFile property of the 'append' action the same way the 'modify' action does

When using the "add" and "modify" actions the templateFile string can be a dynamic handlebars template, but it looks like this behavior isn't applied when using the "append" action. For...