ababil 2.0.0 → 2.0.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/dist/index.js +2 -2
- package/package.json +1 -1
- package/banner.ts +0 -22
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @description CLI portfolio for Ababil Hossain
|
|
6
6
|
* @author Ababil Hossain <ababil.webdev@gmail.com>
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 2.0.
|
|
8
|
+
* @version 2.0.1
|
|
9
9
|
* @repository https://github.com/DevAbabil/ababil.git
|
|
10
10
|
* @created 2024-03-02
|
|
11
11
|
* @lastModified 2025-10-23
|
|
@@ -113,7 +113,7 @@ var data_default = {
|
|
|
113
113
|
timeZone: "Asia/Dhaka"
|
|
114
114
|
})
|
|
115
115
|
},
|
|
116
|
-
version: "2.0.
|
|
116
|
+
version: "2.0.1"
|
|
117
117
|
};
|
|
118
118
|
|
|
119
119
|
// src/components/_header.ts
|
package/package.json
CHANGED
package/banner.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import data from "./src/data";
|
|
4
|
-
|
|
5
|
-
export const pkg = JSON.parse(fs.readFileSync(path.resolve(process.cwd(), "package.json"), "utf-8"));
|
|
6
|
-
|
|
7
|
-
const banner = `
|
|
8
|
-
#!/usr/bin/env node
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* @packageName ${pkg.name}
|
|
12
|
-
* @description ${pkg.description}
|
|
13
|
-
* @author ${pkg?.author}
|
|
14
|
-
* @license MIT
|
|
15
|
-
* @version ${pkg.version}
|
|
16
|
-
* @repository ${pkg?.repository?.url?.replace("git+", "")}
|
|
17
|
-
* @created ${data?.timestamp?.createdAt}
|
|
18
|
-
* @lastModified ${data?.timestamp?.updatedAt}
|
|
19
|
-
**/
|
|
20
|
-
`.trim();
|
|
21
|
-
|
|
22
|
-
fs.writeFileSync("banner.txt", banner);
|