@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.mjs CHANGED
@@ -584,6 +584,7 @@ async function scaffoldPackageType ({
584
584
  documentation: scaffoldPackageDocumentation({packageName, visibility, scope, packageManager, provideExample}),
585
585
  nextSteps: [
586
586
  {summary: 'Add the appropriate `save` flag to the installation instructions in the README'},
587
+ {summary: 'Define supported node.js versions as `engines.node` in the `package.json` file'},
587
588
  {summary: 'Publish pre-release versions to npm until package is stable enough to publish v1.0.0'}
588
589
  ]
589
590
  },
@@ -682,7 +683,7 @@ async function scaffoldCliType ({
682
683
  devDependencies: ['rimraf'],
683
684
  vcsIgnore: {files: [], directories: [`/${defaultBuildDirectory}/`]},
684
685
  buildDirectory: defaultBuildDirectory,
685
- nextSteps: []
686
+ nextSteps: [{summary: 'Define supported node.js versions as `engines.node` in the `package.json` file'}]
686
687
  }
687
688
  ]);
688
689
  }