giget 1.2.0 → 1.2.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.
- package/README.md +8 -8
- package/dist/cli.cjs +2 -1
- package/dist/cli.mjs +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -232,11 +232,11 @@ Published under [MIT License](./LICENSE).
|
|
|
232
232
|
|
|
233
233
|
<!-- Badges -->
|
|
234
234
|
|
|
235
|
-
[npm-version-src]: https://img.shields.io/npm/v/
|
|
236
|
-
[npm-version-href]: https://npmjs.com/package/
|
|
237
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/
|
|
238
|
-
[npm-downloads-href]: https://npmjs.com/package/
|
|
239
|
-
[codecov-src]: https://img.shields.io/codecov/c/gh/unjs/
|
|
240
|
-
[codecov-href]: https://codecov.io/gh/unjs/
|
|
241
|
-
[bundle-src]: https://img.shields.io/bundlephobia/minzip/
|
|
242
|
-
[bundle-href]: https://bundlephobia.com/result?p=
|
|
235
|
+
[npm-version-src]: https://img.shields.io/npm/v/giget?style=flat&colorA=18181B&colorB=F0DB4F
|
|
236
|
+
[npm-version-href]: https://npmjs.com/package/giget
|
|
237
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/giget?style=flat&colorA=18181B&colorB=F0DB4F
|
|
238
|
+
[npm-downloads-href]: https://npmjs.com/package/giget
|
|
239
|
+
[codecov-src]: https://img.shields.io/codecov/c/gh/unjs/giget/main?style=flat&colorA=18181B&colorB=F0DB4F
|
|
240
|
+
[codecov-href]: https://codecov.io/gh/unjs/giget
|
|
241
|
+
[bundle-src]: https://img.shields.io/bundlephobia/minzip/giget?style=flat&colorA=18181B&colorB=F0DB4F
|
|
242
|
+
[bundle-href]: https://bundlephobia.com/result?p=giget
|
package/dist/cli.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
'use strict';
|
|
2
3
|
|
|
3
4
|
const node_path = require('node:path');
|
|
@@ -17,7 +18,7 @@ require('node:util');
|
|
|
17
18
|
require('node-fetch-native/proxy');
|
|
18
19
|
|
|
19
20
|
const name = "giget";
|
|
20
|
-
const version = "1.2.
|
|
21
|
+
const version = "1.2.1";
|
|
21
22
|
const description = "Download templates and git repositories with pleasure!";
|
|
22
23
|
const repository = "unjs/giget";
|
|
23
24
|
const license = "MIT";
|
package/dist/cli.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { relative } from 'node:path';
|
|
2
3
|
import { defineCommand, runMain } from 'citty';
|
|
3
4
|
import { consola } from 'consola';
|
|
@@ -15,7 +16,7 @@ import 'node:util';
|
|
|
15
16
|
import 'node-fetch-native/proxy';
|
|
16
17
|
|
|
17
18
|
const name = "giget";
|
|
18
|
-
const version = "1.2.
|
|
19
|
+
const version = "1.2.1";
|
|
19
20
|
const description = "Download templates and git repositories with pleasure!";
|
|
20
21
|
const repository = "unjs/giget";
|
|
21
22
|
const license = "MIT";
|