16 Commits

Author SHA1 Message Date
Tom Coleman
e17e0f04a4 Actually run the npm7 migration 2022-06-21 13:31:48 +10:00
Tom Coleman
bf2ad5d990 Created npm7 migration 2022-06-19 14:10:51 +10:00
Michael Shilman
938c398707 CLI: Fix NPM typo 2021-07-02 16:39:25 +08:00
Michael Shilman
dc4ae0c8f3 Add unit tests for --legacy-peer-deps 2021-03-03 18:12:59 +08:00
Michael Shilman
3140735626 Add --legacy-peer-deps for NPM7 install 2021-03-03 17:32:04 +08:00
Gaëtan Maisse
4364ee66a0
fix(cli): add some dependencies to be able to run addon-docs with Yarn 2 out of the box 2020-07-12 16:16:32 +02:00
tooppaaa
872f4b0645 fix yarn 2 2020-07-05 15:02:07 +02:00
tooppaaa
86e487a395 Update CLI for angular 2020-07-05 11:11:55 +02:00
Gaëtan Maisse
b0e1d93eca
refactor: create a executeCommand function and use it for every yarn or npm calls
It move the `spawnSync` usage to only a single place which is simpler to maintain.
It also simplify testing as there is no more need to mock an external dep
2020-06-09 08:19:11 +02:00
Gaëtan Maisse
f5c788b92b
refactor: update signature of runAddDeps function 2020-06-08 20:08:17 +02:00
Gaëtan Maisse
0c1a9740dc
refactor: update signature of runInstall function 2020-06-08 20:08:16 +02:00
Gaëtan Maisse
a23e4a0846
refactor: move latestVersion to JsPackageManager and split specific behavior in NPM, Yarn 1 and Yarn 2 classes. 2020-06-08 20:08:15 +02:00
Gaëtan Maisse
c714aca145
refactor: move installDependencies to JsPackageManager
Also rename it to `addDependencies` (a.k.a. `yarn add`) to avoid confusion with `installDepsFromPackageJson` (a.k.a. `yarn install`).
2020-06-08 17:25:44 +02:00
Gaëtan Maisse
a858990fa6
refactor: move installDepsFromPackageJson function to JsPackageManager class and subclasses 2020-06-08 17:25:43 +02:00
Gaëtan Maisse
100ffac29c
refactor: use getRunStorybookCommand from package manager
It avoids to use a ternary expression to define the displayed string and encapsulate specific package managers behaviors in their own classes.
2020-06-08 17:25:43 +02:00
Gaëtan Maisse
ed79e5bb42
refactor: introduce a JsPackageManager abstract class and specialized subclasses for NPM, Yarn and Yarn 2.
The goal of this will be to use the Factory Pattern to encapsulate everything specific to a package manager in a single class.
Then a factory will return an instance of NPM, Yarn or Yarn 2 proxy class according to the package manager used/prefered in end project.
All CLI code will be package manager agnostic and will just call functions of JsPackageManager interface.
2020-06-08 17:25:42 +02:00