aitasks 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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1890,7 +1890,7 @@ var require_commander = __commonJS((exports) => {
1890
1890
  var require_package = __commonJS((exports, module) => {
1891
1891
  module.exports = {
1892
1892
  name: "aitasks",
1893
- version: "1.0.1",
1893
+ version: "1.0.2",
1894
1894
  description: "CLI task management tool built for AI agents",
1895
1895
  type: "module",
1896
1896
  bin: {
@@ -27889,8 +27889,9 @@ function formatBytes(bytes) {
27889
27889
  }
27890
27890
 
27891
27891
  // src/index.ts
27892
+ var pkg = require_package();
27892
27893
  var program2 = new Command;
27893
- program2.name("aitasks").description("CLI task management for AI agents").version("1.0.0").option("-C, --dir <path>", "run as if started in this directory").hook("preAction", () => {
27894
+ program2.name("aitasks").description("CLI task management for AI agents").version(pkg.version).option("-C, --dir <path>", "run as if started in this directory").hook("preAction", () => {
27894
27895
  const dir = program2.opts().dir;
27895
27896
  if (dir) {
27896
27897
  try {
@@ -27944,4 +27945,4 @@ program2.parseAsync(process.argv).catch((err) => {
27944
27945
  process.exit(1);
27945
27946
  });
27946
27947
 
27947
- //# debugId=1CDC1628BBEB0E6964756E2164756E21
27948
+ //# debugId=7BF15E0EE4CC68E364756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aitasks",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI task management tool built for AI agents",
5
5
  "type": "module",
6
6
  "bin": {