antigravity-seo-kit 3.9.2 → 3.9.5
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/lib/installer.js +2 -2
- package/package.json +1 -1
package/lib/installer.js
CHANGED
|
@@ -164,7 +164,7 @@ async function install(licenseKey, cwd) {
|
|
|
164
164
|
? path.join(newAgentsDir, '.env.example')
|
|
165
165
|
: path.join(cwd, '.agent', '.env.example');
|
|
166
166
|
const localEnvExample = path.join(cwd, '.env.example');
|
|
167
|
-
if (fs.existsSync(installedEnvExample)
|
|
167
|
+
if (fs.existsSync(installedEnvExample)) {
|
|
168
168
|
fs.copyFileSync(installedEnvExample, localEnvExample);
|
|
169
169
|
}
|
|
170
170
|
|
|
@@ -695,7 +695,7 @@ function setupWorkspace(cwd) {
|
|
|
695
695
|
// Copy .env.example to workspace root if not exists
|
|
696
696
|
const globalEnvExample = path.join(globalDir, '.env.example');
|
|
697
697
|
const localEnvExample = path.join(cwd, '.env.example');
|
|
698
|
-
if (fs.existsSync(globalEnvExample)
|
|
698
|
+
if (fs.existsSync(globalEnvExample)) {
|
|
699
699
|
fs.copyFileSync(globalEnvExample, localEnvExample);
|
|
700
700
|
}
|
|
701
701
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-seo-kit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.5",
|
|
4
4
|
"description": "Professional Agentic SEO Platform for Google Antigravity 2 AI Agent — 44 specialized skills covering technical audit, E-E-A-T, schema, GEO, local SEO & more",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|