@rigour-labs/cli 2.2.0 ā 2.3.0
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/dist/commands/init.js +3 -0
- package/package.json +2 -2
- package/src/commands/init.ts +3 -0
package/dist/commands/init.js
CHANGED
|
@@ -154,4 +154,7 @@ ${ruleContent}`;
|
|
|
154
154
|
// Failing to update .gitignore isn't fatal
|
|
155
155
|
}
|
|
156
156
|
console.log(chalk_1.default.blue('\nRigour is ready. Run `npx @rigour-labs/cli check` to verify your project.'));
|
|
157
|
+
console.log(chalk_1.default.dim('\nš” Tip: Planning to use a framework like Next.js?'));
|
|
158
|
+
console.log(chalk_1.default.dim(' Run its scaffolding tool (e.g., npx create-next-app) BEFORE rigour init,'));
|
|
159
|
+
console.log(chalk_1.default.dim(' or move rigour.yml and docs/ aside temporarily to satisfy empty-directory checks.'));
|
|
157
160
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rigour-labs/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"rigour": "dist/cli.js"
|
|
6
6
|
},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"globby": "^14.0.1",
|
|
22
22
|
"inquirer": "9.2.16",
|
|
23
23
|
"yaml": "^2.8.2",
|
|
24
|
-
"@rigour-labs/core": "2.
|
|
24
|
+
"@rigour-labs/core": "2.3.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/fs-extra": "^11.0.4",
|
package/src/commands/init.ts
CHANGED
|
@@ -166,4 +166,7 @@ ${ruleContent}`;
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
console.log(chalk.blue('\nRigour is ready. Run `npx @rigour-labs/cli check` to verify your project.'));
|
|
169
|
+
console.log(chalk.dim('\nš” Tip: Planning to use a framework like Next.js?'));
|
|
170
|
+
console.log(chalk.dim(' Run its scaffolding tool (e.g., npx create-next-app) BEFORE rigour init,'));
|
|
171
|
+
console.log(chalk.dim(' or move rigour.yml and docs/ aside temporarily to satisfy empty-directory checks.'));
|
|
169
172
|
}
|