We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
npm pack
1 parent 5421c6f commit 6cebba7Copy full SHA for 6cebba7
.gitignore
@@ -5,4 +5,5 @@ node_modules
5
site
6
.testdir
7
build
8
-.venv
+.venv
9
+aeternity-aeproject-*.tgz
tests/util.mjs
@@ -24,10 +24,6 @@ export function cleanLocal() {
24
25
export async function linkLocalLib(folder) {
26
const c = folder ? path.join(cwd, folder) : cwd;
27
- await exec("npm i .. -D", { cwd: c });
28
- await exec(
29
- 'perl -i -pe \'s/"prepare"/"rem-prepare"/g\' ../node_modules/@aeternity/aepp-sdk/package.json',
30
- { cwd: c },
31
- );
32
- await exec("npm i ../node_modules/@aeternity/aepp-sdk", { cwd: c });
+ await exec("npm pack --ignore-scripts", { cwd: path.join(c, '..') });
+ await exec("npm i ../aeternity-aeproject-4.10.2.tgz -D", { cwd: c });
33
}
0 commit comments