Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mrm-core

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mrm-core - npm Package Compare versions

Comparing version 7.1.4 to 7.1.5

11

CHANGELOG.md

@@ -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 @@

4

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc