@akanjs/cli 0.9.60-canary.11 → 0.9.60-canary.12
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/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -4051,7 +4051,7 @@ var LibraryRunner = class {
|
|
|
4051
4051
|
workspace.mkdir("node_modules/.akan");
|
|
4052
4052
|
if (workspace.exists("node_modules/.akan/akanjs"))
|
|
4053
4053
|
await workspace.removeDir("node_modules/.akan/akanjs");
|
|
4054
|
-
await workspace.exec(`cd node_modules/.akan && git clone git@github.com:akan-team
|
|
4054
|
+
await workspace.exec(`cd node_modules/.akan && git clone git@github.com:akan-team/akanjs.git`);
|
|
4055
4055
|
await workspace.cp(`node_modules/.akan/akanjs/libs/${libName}`, `libs/${libName}`);
|
|
4056
4056
|
await workspace.cp(`libs/${libName}/env/env.server.example.ts`, `libs/${libName}/env/env.server.testing.ts`);
|
|
4057
4057
|
workspace.setTsPaths("lib", libName);
|
package/esm/index.js
CHANGED
|
@@ -4032,7 +4032,7 @@ var LibraryRunner = class {
|
|
|
4032
4032
|
workspace.mkdir("node_modules/.akan");
|
|
4033
4033
|
if (workspace.exists("node_modules/.akan/akanjs"))
|
|
4034
4034
|
await workspace.removeDir("node_modules/.akan/akanjs");
|
|
4035
|
-
await workspace.exec(`cd node_modules/.akan && git clone git@github.com:akan-team
|
|
4035
|
+
await workspace.exec(`cd node_modules/.akan && git clone git@github.com:akan-team/akanjs.git`);
|
|
4036
4036
|
await workspace.cp(`node_modules/.akan/akanjs/libs/${libName}`, `libs/${libName}`);
|
|
4037
4037
|
await workspace.cp(`libs/${libName}/env/env.server.example.ts`, `libs/${libName}/env/env.server.testing.ts`);
|
|
4038
4038
|
workspace.setTsPaths("lib", libName);
|