agent-generator 1.0.4 → 1.0.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/install-extension.js +1 -1
- package/package.json +1 -1
package/install-extension.js
CHANGED
|
@@ -35,7 +35,7 @@ if (!fs.existsSync(targetDir)) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
// Copy extension files
|
|
38
|
-
const filesToCopy = ['main.js', 'package.json', '
|
|
38
|
+
const filesToCopy = ['main.js', 'package.json', '.agents', '.github'];
|
|
39
39
|
const currentDir = __dirname;
|
|
40
40
|
|
|
41
41
|
filesToCopy.forEach(file => {
|
package/package.json
CHANGED