istd-init 0.1.0 → 0.1.1

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": "istd-init",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Initialize a project with BMAD-METHOD pre-configured in one command",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -5,7 +5,7 @@ import { initGit, isGitRepo } from './installers/git.js';
5
5
  import { createGitignore, createReadme } from './installers/files.js';
6
6
  import { ui } from './ui.js';
7
7
 
8
- const VERSION = '0.1.0';
8
+ const VERSION = '0.1.1';
9
9
 
10
10
  function parseArgs(args) {
11
11
  const opts = {
@@ -9,6 +9,8 @@ export async function installBmad(config) {
9
9
  'bmad-method',
10
10
  'install',
11
11
  '--yes',
12
+ '--directory',
13
+ process.cwd(),
12
14
  '--modules',
13
15
  config.modules.join(','),
14
16
  '--tools',