create-akan-workspace 2.0.0-rc.4 → 2.0.0-rc.5

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2164,7 +2164,7 @@ var run = async ({
2164
2164
  const program2 = new Command().name("create-akan-workspace");
2165
2165
  program2.argument("[org]", "organization name").option("-a, --app <string>", "application name").option("-d, --dir <string>", "directory").option("-l, --libs <boolean>", "install shared and util libraries", false).action(async (org, options) => {
2166
2166
  await spawnProcess(spawnCommand, "bun", ["install", "-g", "akanjs", "--latest"]);
2167
- await spawnProcess(spawnCommand, "akan", [
2167
+ await spawnProcess(spawnCommand, "akan2", [
2168
2168
  "create-workspace",
2169
2169
  ...org ? [org] : [],
2170
2170
  ...options.app ? [`--app=${options.app}`] : [],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "create-akan-workspace",
4
- "version": "2.0.0-rc.4",
4
+ "version": "2.0.0-rc.5",
5
5
  "bin": {
6
6
  "create-akan-workspace": "index.js"
7
7
  },