creatium 0.1.14 → 0.1.15

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.
package/dist/main.cjs CHANGED
@@ -1790,12 +1790,13 @@ class CreatiumCore {
1790
1790
  return void 0;
1791
1791
  }
1792
1792
  };
1793
- const paths = (await getPaths("*", {
1793
+ const paths = await getPaths("**", {
1794
1794
  filesOnly: true,
1795
1795
  cwd: input,
1796
+ absolute: true,
1796
1797
  dot: true,
1797
1798
  ...inputOpts || {}
1798
- })).map((path) => joinPath(input, path));
1799
+ });
1799
1800
  console.debug({
1800
1801
  templatePaths: paths,
1801
1802
  input
package/dist/main.mjs CHANGED
@@ -1764,12 +1764,13 @@ class CreatiumCore {
1764
1764
  return void 0;
1765
1765
  }
1766
1766
  };
1767
- const paths = (await getPaths("*", {
1767
+ const paths = await getPaths("**", {
1768
1768
  filesOnly: true,
1769
1769
  cwd: input,
1770
+ absolute: true,
1770
1771
  dot: true,
1771
1772
  ...inputOpts || {}
1772
- })).map((path) => joinPath(input, path));
1773
+ });
1773
1774
  console.debug({
1774
1775
  templatePaths: paths,
1775
1776
  input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creatium",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Build your create-bins quickly and easily",
5
5
  "keywords": [
6
6
  "bin",
@@ -67,7 +67,7 @@
67
67
  "devDependencies": {
68
68
  "@types/columnify": "1.5.4",
69
69
  "@types/yargs": "17.0.33",
70
- "@creatium/repo-config": "0.1.14"
70
+ "@creatium/repo-config": "0.1.15"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public",
@@ -76,7 +76,7 @@
76
76
  "scripts": {
77
77
  "build": "unbuild",
78
78
  "dev": "tsx examples/simple/bin.ts",
79
- "example": "run() { tsx examples/\"${@:1}\"/bin.ts; }; run $@",
79
+ "example": "run(){ tsx examples/\"${@:1}\"/bin.ts; }; run $@",
80
80
  "size": "pnpm dlx @sizium/cli -i ./ --res info",
81
81
  "test": "vitest run -r src --passWithNoTests"
82
82
  }