create-minista 2.3.1 → 2.4.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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -63,7 +63,7 @@ export async function main() {
63
63
  const projectName = options.projectName
64
64
  ? options.projectName
65
65
  : defaultProjectName;
66
- const hash = args.commit ? `#${args.commit}` : "#v2";
66
+ const hash = args.commit ? `#${args.commit}` : "";
67
67
  const templateTarget = options.template.includes("/")
68
68
  ? options.template
69
69
  : `${officialTemplatesPath}/${options.template}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-minista",
3
3
  "description": "Scaffolding for minista projects",
4
- "version": "2.3.1",
4
+ "version": "2.4.1",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-minista": "./cli.mjs"