@theone881/aacode 1.0.1 → 1.0.2

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.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ const { execFileSync } = require('child_process');
3
+ const path = require('path');
4
+ const bin = path.join(__dirname, 'aacode');
5
+ execFileSync(bin, process.argv.slice(2), { stdio: 'inherit' });
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@theone881/aacode",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "author": "XINGYU CHEN",
5
5
  "description": "AI assiant,help you to build your program",
6
6
  "bin": {
7
- "aacode": "./bin/aacode"
7
+ "aacode": "./bin/aacode-cli.js"
8
8
  },
9
9
  "license": "UNLICENSED,SEE LICENSE IN LICENSE.txt",
10
10
  "homepage": "https://github.com/Theone-best/aacode",
File without changes