@justin_666/square-couplets-master-skills 1.0.14 → 1.0.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justin_666/square-couplets-master-skills",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Claude Agent Skills for generating Chinese New Year Doufang (diamond-shaped couplet) artwork using Google Gemini AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/doufang-skills.js",
|
|
@@ -67,23 +67,6 @@ function findServicesPath() {
|
|
|
67
67
|
return null;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
// Load environment variables
|
|
71
|
-
const envLocalPath = join(projectRoot, '.env.local');
|
|
72
|
-
const envPath = join(projectRoot, '.env');
|
|
73
|
-
const cwdEnvLocalPath = join(process.cwd(), '.env.local');
|
|
74
|
-
const cwdEnvPath = join(process.cwd(), '.env');
|
|
75
|
-
|
|
76
|
-
if (existsSync(envLocalPath)) {
|
|
77
|
-
dotenvConfig({ path: envLocalPath });
|
|
78
|
-
} else if (existsSync(envPath)) {
|
|
79
|
-
dotenvConfig({ path: envPath });
|
|
80
|
-
} else if (existsSync(cwdEnvLocalPath)) {
|
|
81
|
-
dotenvConfig({ path: cwdEnvLocalPath });
|
|
82
|
-
} else if (existsSync(cwdEnvPath)) {
|
|
83
|
-
dotenvConfig({ path: cwdEnvPath });
|
|
84
|
-
} else {
|
|
85
|
-
dotenvConfig();
|
|
86
|
-
}
|
|
87
70
|
|
|
88
71
|
async function main() {
|
|
89
72
|
try {
|