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.
- package/index.js +1 -1
- 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, "
|
|
2167
|
+
await spawnProcess(spawnCommand, "akan2", [
|
|
2168
2168
|
"create-workspace",
|
|
2169
2169
|
...org ? [org] : [],
|
|
2170
2170
|
...options.app ? [`--app=${options.app}`] : [],
|