create-kecare 1.0.0-beta.2 → 1.0.0-beta.4

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/__VERSION__.ts ADDED
@@ -0,0 +1 @@
1
+ export const __VERSION__ = '1.0.0-beta.4'
package/index.mjs CHANGED
@@ -1,4 +1,5 @@
1
- // oxlint-disable no-unused-vars
1
+ #!/usr/bin/env node
2
+
2
3
  import { __VERSION__ } from './__VERSION__.mjs';
3
4
 
4
5
  // Node.js
@@ -21,6 +22,7 @@ const color = gradient(['cyan', '#2d9b87']);
21
22
  (async () => {
22
23
  const args = process.argv.slice(2);
23
24
 
25
+ // oxlint-disable-next-line no-unused-vars
24
26
  let version = 'latest';
25
27
  let installPath = undefined;
26
28
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "create-kecare",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.4",
4
4
  "main": "index.mjs",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "https://github.com/pamperkyumi/kecare"
7
+ "url": "git+https://github.com/pamperkyumi/kecare.git"
8
8
  },
9
9
  "bin": {
10
10
  "create-kecare": "index.mjs"