dank-ai 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/lib/project.js +2 -3
  2. package/package.json +1 -1
package/lib/project.js CHANGED
@@ -12,7 +12,6 @@ class DankProject {
12
12
  this.name = name;
13
13
  this.options = {
14
14
  configFile: 'dank.config.js',
15
- outputDir: 'output',
16
15
  template: 'basic',
17
16
  ...options
18
17
  };
@@ -25,8 +24,8 @@ class DankProject {
25
24
  async init() {
26
25
  const projectDir = this.projectPath;
27
26
 
28
- // Create directory structure
29
- await fs.ensureDir(path.join(projectDir, this.options.outputDir));
27
+ // Create directory structure (if needed)
28
+ // await fs.ensureDir(path.join(projectDir, this.options.outputDir));
30
29
 
31
30
  // Create example config file
32
31
  const exampleConfig = this._generateExampleConfig();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dank-ai",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Dank Agent Service - Docker-based AI agent orchestration platform",
5
5
  "main": "lib/index.js",
6
6
  "exports": {