We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6942203 commit a8f7cbbCopy full SHA for a8f7cbb
1 file changed
src/app/index.ts
@@ -1,3 +1,4 @@
1
+// sort-imports-ignore
2
import chalk from 'chalk';
3
import _ from 'lodash';
4
import { resolve } from 'node:path';
@@ -145,8 +146,7 @@ export default class PluginGenerator extends Generator {
145
146
pkg.devDependencies['@verdaccio/plugin-verifier'] =
147
rootPackageJSON.devDependencies['@verdaccio/plugin-verifier'];
148
const category = pluginCategoryMap[pluginType];
- pkg.scripts['verify'] =
149
- `verdaccio-plugin-verifier ${this.projectName} --category ${category}`;
+ pkg.scripts['verify'] = `verdaccio-plugin-verifier ${this.projectName} --category ${category}`;
150
151
this.fs.writeJSON(this.templatePath(`${pluginType}/_package.json`), pkg);
152
0 commit comments