conductor-4-all 0.0.16 → 0.0.17

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.cjs CHANGED
@@ -239,7 +239,7 @@ var ConfigurableGenerator = class {
239
239
  if (protocolFilename) {
240
240
  try {
241
241
  const protocolSource = (0, import_path3.join)(templateRoot, "GEMINI.md");
242
- const protocolDest = (0, import_path3.join)(targetDir, protocolFilename);
242
+ const protocolDest = (0, import_path3.join)(process.cwd(), protocolFilename);
243
243
  if (existsSync(protocolSource)) {
244
244
  let shouldCopy = true;
245
245
  if (existsSync(protocolDest)) {
package/dist/index.js CHANGED
@@ -212,7 +212,7 @@ var ConfigurableGenerator = class {
212
212
  if (protocolFilename) {
213
213
  try {
214
214
  const protocolSource = join3(templateRoot, "GEMINI.md");
215
- const protocolDest = join3(targetDir, protocolFilename);
215
+ const protocolDest = join3(process.cwd(), protocolFilename);
216
216
  if (existsSync(protocolSource)) {
217
217
  let shouldCopy = true;
218
218
  if (existsSync(protocolDest)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-4-all",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Conductor spec-driven development CLI - TypeScript/Node.js version",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {