Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
fix: plugin suffix (#19)
Browse files Browse the repository at this point in the history
We don't need -plugin suffix, due the config file would need to include it as part of plugin name
  • Loading branch information
juanpicado authored Dec 25, 2019
1 parent 6cd4c45 commit d7d0c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const yosay = require("yosay");

export default class VerdaccioPluginGenerator extends Generator {
private props: propsTypes;
private projectName: string = "verdaccio-plugin";
private destinationPathName: string = "verdaccio-plugin";
private projectName: string = "verdaccio-";
private destinationPathName: string = "verdaccio-";
constructor(args, opts) {
super(args, opts);
this.props = {};
Expand Down

0 comments on commit d7d0c02

Please sign in to comment.