jvcs 1.6.6 → 1.6.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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -279,7 +279,7 @@ yargs(hideBin(process.argv))
279
279
 
280
280
  const ignoreFiles = await new Promise((resolve) => {
281
281
  rl.question(
282
- "Enter files/folders to ignore (comma-separated, e.g., node_modules/, dist/, .env) or leave empty: ",
282
+ "Enter files/folders to ignore (comma-separated, e.g., node_modules, dist, .env) or leave empty: ",
283
283
  (answer) => {
284
284
  rl.close();
285
285
  resolve(answer);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jvcs",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
4
4
  "bin": {
5
5
  "jvcs": "index.js"
6
6
  },