create-node-lib 2.9.1 → 2.9.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/saofile.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.1",
3
+ "version": "2.9.2",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
package/saofile.js CHANGED
@@ -107,6 +107,7 @@ module.exports = {
107
107
  async completed() {
108
108
  this.gitInit()
109
109
  await this.npmInstall({ npmClient: this.answers.npmClient })
110
+ await this.npmInstall({ npmClient: this.answers.npmClient, args: ['run', 'prepare'] })
110
111
  this.showProjectTips()
111
112
 
112
113
  this.logger.tip('You\'re all setup. hack away!')