@form8ion/javascript 13.0.0-beta.2 → 13.0.0-beta.3

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/lib/index.js CHANGED
@@ -620,6 +620,7 @@ async function scaffoldPackageType ({
620
620
  documentation: scaffoldPackageDocumentation({packageName, visibility, scope, packageManager, provideExample}),
621
621
  nextSteps: [
622
622
  {summary: 'Add the appropriate `save` flag to the installation instructions in the README'},
623
+ {summary: 'Define supported node.js versions as `engines.node` in the `package.json` file'},
623
624
  {summary: 'Publish pre-release versions to npm until package is stable enough to publish v1.0.0'}
624
625
  ]
625
626
  },
@@ -718,7 +719,7 @@ async function scaffoldCliType ({
718
719
  devDependencies: ['rimraf'],
719
720
  vcsIgnore: {files: [], directories: [`/${defaultBuildDirectory}/`]},
720
721
  buildDirectory: defaultBuildDirectory,
721
- nextSteps: []
722
+ nextSteps: [{summary: 'Define supported node.js versions as `engines.node` in the `package.json` file'}]
722
723
  }
723
724
  ]);
724
725
  }