asyq 8.2.0 → 8.2.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/README.md +11 -0
- package/package.json +23 -13
package/README.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Automatically generate `.env.example` files by scanning your codebase for environment variable usage.
|
|
4
4
|
|
|
5
|
+
<div align="center">
|
|
6
|
+
|
|
7
|
+
[](https://postimg.cc/bd8B5KPK)
|
|
8
|
+
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<p>
|
|
12
|
+
<b>Stop letting your environment templates fall out of sync.</b><br>
|
|
13
|
+
Asyq scans your source code to detect variable usage and automatically generates a complete <code>.env.example</code> file—ensuring your team never struggles with missing configuration keys again.
|
|
14
|
+
</p>
|
|
15
|
+
|
|
5
16
|
## Installation
|
|
6
17
|
|
|
7
18
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asyq",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"env",
|
|
@@ -30,19 +30,10 @@
|
|
|
30
30
|
"files": [
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@clack/prompts": "^0.11.0",
|
|
35
|
-
"commander": "^12.0.0",
|
|
36
|
-
"picocolors": "^1.1.1"
|
|
37
|
-
},
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@types/node": "^22.0.0",
|
|
40
|
-
"dotenv": "^16.6.1",
|
|
41
|
-
"tsup": "^8.0.0",
|
|
42
|
-
"typescript": "^5.6.0"
|
|
43
|
-
},
|
|
44
33
|
"scripts": {
|
|
45
34
|
"build": "tsup",
|
|
35
|
+
"prepublishOnly": "pnpm build",
|
|
36
|
+
"publish": "pnpm publish --access=public --no-git-checks",
|
|
46
37
|
"bump:patch": "pnpm version patch",
|
|
47
38
|
"bump:minor": "pnpm version minor",
|
|
48
39
|
"bump:major": "pnpm version major",
|
|
@@ -51,5 +42,24 @@
|
|
|
51
42
|
"release:patch": "pnpm commit && pnpm bump:patch && pnpm push",
|
|
52
43
|
"release:minor": "pnpm commit && pnpm bump:minor && pnpm push",
|
|
53
44
|
"release:major": "pnpm commit && pnpm bump:major && pnpm push"
|
|
45
|
+
},
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/thev1ndu/asyq.git"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/thev1ndu/asyq#readme",
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/thev1ndu/asyq/issues"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@clack/prompts": "^0.11.0",
|
|
56
|
+
"commander": "^12.0.0",
|
|
57
|
+
"picocolors": "^1.1.1"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/node": "^22.0.0",
|
|
61
|
+
"dotenv": "^16.6.1",
|
|
62
|
+
"tsup": "^8.0.0",
|
|
63
|
+
"typescript": "^5.6.0"
|
|
54
64
|
}
|
|
55
|
-
}
|
|
65
|
+
}
|