create-yeow 0.1.0 → 0.1.1

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/bin/index.js +1 -1
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -66,6 +66,6 @@ _(`\n ${c.g}✓${c.r} ${c.b}Done!${c.r}\n\n`);
66
66
  _(` cd ${name}\n`);
67
67
  _(` npm install\n`);
68
68
  _(` npm run dev${c.d} # start dev server${c.r}\n`);
69
- _(_` npm run build${c.d} # build plugin JAR${c.r}\n\n`);
69
+ _(` npm run build${c.d} # build plugin JAR${c.r}\n\n`);
70
70
 
71
71
  function copy(src, dest) { writeFileSync(dest, readFileSync(src)); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-yeow",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Scaffold a Yeow plugin project",
5
5
  "type": "module",
6
6
  "bin": { "create-yeow": "./bin/index.js" },