bmad-method 6.3.1-next.8 → 6.3.1-next.9

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,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.3.1-next.8",
4
+ "version": "6.3.1-next.9",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -82,7 +82,9 @@ module.exports = {
82
82
  stat: fsp.stat,
83
83
  readdir: fsp.readdir,
84
84
  access: fsp.access,
85
+ realpath: fsp.realpath,
85
86
  rename: fsp.rename,
87
+ rmdir: fsp.rmdir,
86
88
  unlink: fsp.unlink,
87
89
  chmod: fsp.chmod,
88
90
  mkdir: fsp.mkdir,
@@ -103,6 +105,9 @@ module.exports = {
103
105
  existsSync: fs.existsSync.bind(fs),
104
106
  readFileSync: fs.readFileSync.bind(fs),
105
107
  writeFileSync: fs.writeFileSync.bind(fs),
108
+ statSync: fs.statSync.bind(fs),
109
+ accessSync: fs.accessSync.bind(fs),
110
+ readdirSync: fs.readdirSync.bind(fs),
106
111
  createReadStream: fs.createReadStream.bind(fs),
107
112
  pathExistsSync: fs.existsSync.bind(fs),
108
113