generator-bitloops 0.3.6 → 0.3.7

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/setup/index.js +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-bitloops",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Next.js with TypeScript, Tailwind, Storybook and Cypress generator by Bitloops",
5
5
  "license": "MIT",
6
6
  "author": "Bitloops S.A.",
package/setup/index.js CHANGED
@@ -56,6 +56,12 @@ export default class extends Generator {
56
56
  default: false,
57
57
  });
58
58
 
59
+ this.option('bitloops', {
60
+ type: Boolean,
61
+ description: 'Add Bitloops specific boilerplate files',
62
+ default: false,
63
+ });
64
+
59
65
  this.option('git', {
60
66
  type: Boolean,
61
67
  description: 'Commit changes to git',