We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1b524 commit ce8e08aCopy full SHA for ce8e08a
shell.nix
@@ -19,9 +19,9 @@ in
19
set +o allexport
20
set -v
21
22
- # Enables npm link
23
- export npm_config_prefix=~/.npm
+ mkdir --parents "$(pwd)/tmp"
24
+ # Built executables and NPM executables
25
export PATH="$(pwd)/dist/bin:$(npm bin):$PATH"
26
27
# pkg is installed in package.json
@@ -32,8 +32,10 @@ in
32
]
33
}:$PATH"
34
35
+ # Enables npm link
36
+ export npm_config_prefix=~/.npm
37
+
38
npm install
- mkdir --parents "$(pwd)/tmp"
39
40
set +v
41
'';
0 commit comments