@adbayb/stack 0.0.0-next-f9070af → 0.0.0-next-81b54cb

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 +3 -3
  2. package/package.json +4 -4
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-f9070af";
171
+ var version = "0.0.0-next-81b54cb";
172
172
 
173
173
  const VERSION = version;
174
174
 
@@ -437,8 +437,8 @@ const createCreateCommand = (program)=>{
437
437
  }
438
438
  }).task({
439
439
  label: label$2("Create a symlink to `README.md` file"),
440
- async handler ({ data }) {
441
- await symlink(`./${data.projectName}/README.md`, "./README.md");
440
+ async handler ({ data: { projectName }, inputTemplate }) {
441
+ await symlink(join(inputTemplate === "single-project" ? projectName : join("libraries", projectName), "README.md"), "./README.md");
442
442
  }
443
443
  }).task({
444
444
  label: label$2("Run `stack install`"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-f9070af",
3
+ "version": "0.0.0-next-81b54cb",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "license": "MIT",
44
44
  "devDependencies": {
45
- "@types/node": "22.8.7",
45
+ "@types/node": "22.9.0",
46
46
  "quickbundle": "2.6.0"
47
47
  },
48
48
  "dependencies": {
@@ -68,11 +68,11 @@
68
68
  "eslint-plugin-sort-keys-custom-order": "^2.2.0",
69
69
  "eslint": "^9.14.0",
70
70
  "fdir": "^6.4.2",
71
- "globals": "^15.11.0",
71
+ "globals": "^15.12.0",
72
72
  "prettier": "^3.3.3",
73
73
  "termost": "^0.18.0",
74
74
  "turbo": "^2.2.3",
75
- "typescript-eslint": "^8.12.2",
75
+ "typescript-eslint": "^8.13.0",
76
76
  "typescript": "^5.6.3"
77
77
  },
78
78
  "scripts": {