@robgietema/generator-nick 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/app/index.js +2 -3
- package/package.json +1 -1
package/generators/app/index.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import path from 'path';
|
|
2
2
|
import Generator from 'yeoman-generator';
|
|
3
|
-
import { exec } from 'child_process';
|
|
4
3
|
|
|
5
4
|
const currentDir = path.basename(process.cwd());
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
export default class extends Generator {
|
|
8
7
|
constructor(args, opts) {
|
|
9
8
|
super(args, opts);
|
|
10
9
|
this.argument('projectName', {
|
|
@@ -126,4 +125,4 @@ pnpm start
|
|
|
126
125
|
`,
|
|
127
126
|
);
|
|
128
127
|
}
|
|
129
|
-
}
|
|
128
|
+
}
|