aiongside 0.1.0-beta.0 → 0.1.0

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/bin.js +4 -2
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -8728,7 +8728,7 @@ var require_cjs = __commonJS(function(exports) {
8728
8728
 
8729
8729
  // node_modules/.bun/write-file-atomic@7.0.1/node_modules/write-file-atomic/lib/index.js
8730
8730
  var require_lib = __commonJS(function(exports, module) {
8731
- var __filename = "/home/moseoh/workspace/moseoh/aiongside/repo/node_modules/.bun/write-file-atomic@7.0.1/node_modules/write-file-atomic/lib/index.js";
8731
+ var __filename = "/home/runner/work/aiongside/aiongside/node_modules/.bun/write-file-atomic@7.0.1/node_modules/write-file-atomic/lib/index.js";
8732
8732
  module.exports = writeFile;
8733
8733
  module.exports.sync = writeFileSync;
8734
8734
  module.exports._getTmpname = getTmpname;
@@ -11032,6 +11032,7 @@ var require_commander = __commonJS(function(exports) {
11032
11032
  });
11033
11033
 
11034
11034
  // packages/cli/src/program.ts
11035
+ import { createRequire as createRequire2 } from "node:module";
11035
11036
  import path2 from "node:path";
11036
11037
 
11037
11038
  // packages/filesystem/dist/errors.js
@@ -31181,9 +31182,10 @@ var {
31181
31182
  } = import__.default;
31182
31183
 
31183
31184
  // packages/cli/src/program.ts
31185
+ var cliVersion = createRequire2(import.meta.url)("../package.json").version;
31184
31186
  function createProgram() {
31185
31187
  const program2 = new Command;
31186
- program2.name("aiongside").description("A local-first workspace for people and AI").version("0.0.0").option("--root <path>", "AIongside workspace path");
31188
+ program2.name("aiongside").description("A local-first workspace for people and AI").version(cliVersion).option("--root <path>", "AIongside workspace path");
31187
31189
  program2.command("init").description("Create an AIongside workspace").argument("[path]", "Directory to initialize", ".").option("--name <name>", "Workspace name").option("--prefix <prefix>", "Work item ID prefix", "AIO").action(async (target, options) => {
31188
31190
  const root = path2.resolve(target);
31189
31191
  const config2 = await initializeWorkspace(root, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiongside",
3
- "version": "0.1.0-beta.0",
3
+ "version": "0.1.0",
4
4
  "description": "A local-first workspace for people and AI",
5
5
  "license": "MIT",
6
6
  "repository": {