Re: dub install package globally

2022-10-11 Thread Preetpal via Digitalmars-d-learn
On Thursday, 6 October 2022 at 08:50:02 UTC, christian.koestlin wrote: On Thursday, 6 October 2022 at 07:06:52 UTC, Preetpal wrote: Is there a way to install packages "globally" using dub? For example, when using the node package manager (NPM) you can install a package "globally" (so it is ava

Re: dub install package globally

2022-10-06 Thread christian.koestlin via Digitalmars-d-learn
On Thursday, 6 October 2022 at 07:06:52 UTC, Preetpal wrote: Is there a way to install packages "globally" using dub? For example, when using the node package manager (NPM) you can install a package "globally" (so it is available for the current user from the command line) using the `--global`

dub install package globally

2022-10-06 Thread Preetpal via Digitalmars-d-learn
Is there a way to install packages "globally" using dub? For example, when using the node package manager (NPM) you can install a package "globally" (so it is available for the current user from the command line) using the `--global` flag as follows: `npm install --global typescript` This wo