@anth0nycodes/license-generator 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.
package/README.md CHANGED
@@ -4,8 +4,7 @@ An interactive CLI tool to quickly generate open-source licenses for your projec
4
4
 
5
5
  ## Demo
6
6
 
7
- <video src="https://github.com/user-attachments/assets/25d4a68b-4cb3-4570-ac57-88d955bbcb53" style="width: 100%;" controls playsinline>
8
- </video>
7
+ https://github.com/user-attachments/assets/25d4a68b-4cb3-4570-ac57-88d955bbcb53
9
8
 
10
9
  ## Features
11
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anth0nycodes/license-generator",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "An open-source CLI tool to generate licenses for your repository.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -13,10 +13,7 @@ const main = async () => {
13
13
  .description(
14
14
  "A CLI application that generates open-source licenses for your repositories.",
15
15
  )
16
- .option("-l, --license <TYPE>", "the type of license")
17
- .option("-a, --author <NAME>", "author's name")
18
- .option("-y, --year <NAME>", "current year")
19
- .version("0.2.0");
16
+ .version("0.1.3");
20
17
 
21
18
  // TODO: Add options, so you can manually add a license flag like --license mit
22
19