Comparing version 7.1.4 to 7.1.5
@@ -6,2 +6,13 @@ # Change Log | ||
## 7.1.5 (2022-09-15) | ||
### Bug Fixes | ||
* Pass correct parameters to pnpm ([#235](https://github.com/sapegin/mrm/issues/235)) ([92cb61c](https://github.com/sapegin/mrm/commit/92cb61c03c02559269cfaadaa391a069ef9add08)) | ||
## 7.1.4 (2022-09-15) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "mrm-core", | ||
"version": "7.1.4", | ||
"version": "7.1.5", | ||
"description": "Utilities to make tasks for Mrm", | ||
@@ -57,3 +57,3 @@ "author": { | ||
], | ||
"gitHead": "3f324377ec7863f1e2254822f9146b733470631d" | ||
"gitHead": "5da879a48d18f87997210b6ef785f2301d05596b" | ||
} |
@@ -90,3 +90,3 @@ jest.mock('fs'); | ||
expect.stringMatching(/pnpm(\.cmd)?/), | ||
['install', '--save-dev', 'eslint@latest', 'babel-core@latest'], | ||
['add', '--save-dev', 'eslint@latest', 'babel-core@latest'], | ||
options | ||
@@ -140,3 +140,3 @@ ); | ||
expect.stringMatching(/pnpm(\.cmd)?/), | ||
['install', '--save', 'eslint@latest', 'babel-core@latest'], | ||
['add', '--save-prod', 'eslint@latest', 'babel-core@latest'], | ||
options | ||
@@ -434,3 +434,3 @@ ); | ||
expect.stringMatching(/npm(\.cmd)?/), | ||
['uninstall', '--save-dev', 'eslint', 'babel-core'], | ||
['remove', '--save-dev', 'eslint', 'babel-core'], | ||
options | ||
@@ -437,0 +437,0 @@ ); |
@@ -185,4 +185,4 @@ // @ts-check | ||
const args = [ | ||
options.remove ? 'uninstall' : 'install', | ||
options.dev ? '--save-dev' : '--save', | ||
options.remove ? 'remove' : 'add', | ||
options.dev ? '--save-dev' : '--save-prod', | ||
].concat(deps); | ||
@@ -189,0 +189,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
128349