@adbayb/stack 0.0.0-next-beb94a3 → 0.0.0-next-ab05550

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/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -168,7 +168,7 @@ const ESLINT_EXTENSIONS = [
168
168
  "mdx"
169
169
  ];
170
170
 
171
- var version = "0.0.0-next-beb94a3";
171
+ var version = "0.0.0-next-ab05550";
172
172
 
173
173
  const VERSION = version;
174
174
 
@@ -412,6 +412,11 @@ const createCreateCommand = (program)=>{
412
412
  handler ({ data, inputTemplate }) {
413
413
  applyTemplate(inputTemplate, data);
414
414
  }
415
+ }).task({
416
+ label: label$2("Create a symlink to `README.md` file"),
417
+ async handler ({ data: { projectName }, inputTemplate }) {
418
+ await symlink(join(inputTemplate === "single-project" ? projectName : join("libraries", projectName), "README.md"), "./README.md");
419
+ }
415
420
  }).task({
416
421
  label: label$2("Set up the package manager"),
417
422
  async handler () {
@@ -435,11 +440,6 @@ const createCreateCommand = (program)=>{
435
440
  throw createError("pnpm", error);
436
441
  }
437
442
  }
438
- }).task({
439
- label: label$2("Create a symlink to `README.md` file"),
440
- async handler ({ data: { projectName }, inputTemplate }) {
441
- await symlink(join(inputTemplate === "single-project" ? projectName : join("libraries", projectName), "README.md"), "./README.md");
442
- }
443
443
  }).task({
444
444
  label: label$2("Run `stack install`"),
445
445
  async handler () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-beb94a3",
3
+ "version": "0.0.0-next-ab05550",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"