@codabytez/create-next-template 0.1.2 → 0.1.3

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -37,7 +37,7 @@ var import_path5 = __toESM(require("path"));
37
37
  // src/helpers/copy.ts
38
38
  var import_fs_extra = __toESM(require("fs-extra"));
39
39
  var import_path = __toESM(require("path"));
40
- var TEMPLATES_DIR = import_path.default.join(__dirname, "../../templates");
40
+ var TEMPLATES_DIR = import_path.default.join(__dirname, "../templates");
41
41
  async function copyTemplate(templateName, destPath) {
42
42
  const templatePath = import_path.default.join(TEMPLATES_DIR, templateName);
43
43
  if (!await import_fs_extra.default.pathExists(templatePath)) return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codabytez/create-next-template",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI to scaffold Next.js projects with your preferred stack",
5
5
  "bin": {
6
6
  "create-next-template": "./dist/index.js"