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

yarn-deduplicate

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yarn-deduplicate - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

.history/__tests__/cli_20181030161413.js

2

__tests__/cli.js

@@ -96,3 +96,3 @@ const childProcess = require('child_process');

test.only('uses fewer strategy', async () => {
test('uses fewer strategy', async () => {
const { stdout, stderr } = await execFile(process.execPath, [

@@ -99,0 +99,0 @@ cliFilePath,

@@ -13,3 +13,6 @@ module.exports = {

],
extends: ['plugin:prettier/recommended']
extends: [
'plugin:prettier/recommended',
'plugin:jest/recommended'
]
};

@@ -8,2 +8,13 @@ # Changelog

## [1.0.5] - 2018-12-15
### Changed
- Support for Node 6 (thanks @leipert)
### Chores
- Moved eslint and stricter to devDependencies (thanks @hawkrives)
- Re-enabled disabled tests (thanks @amark)
## [1.0.4] - 2018-12-12

@@ -10,0 +21,0 @@

{
"name": "yarn-deduplicate",
"version": "1.0.4",
"version": "1.0.5",
"bin": "./cli.js",

@@ -29,3 +29,3 @@ "description": "Deduplication tool for yarn.lock files",

"engines": {
"node": ">=8"
"node": ">=6"
},

@@ -38,2 +38,5 @@ "peerDependencies": {

"commander": "^2.10.0",
"semver": "^5.3.0"
},
"devDependencies": {
"eslint": "^5.10.0",

@@ -43,8 +46,5 @@ "eslint-config-prettier": "^3.3.0",

"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.15.3",
"semver": "^5.3.0"
},
"devDependencies": {
"jest": "^21.2.1",
"outdent": "^0.5.0"
"outdent": "^0.5.0",
"prettier": "^1.15.3"
},

@@ -51,0 +51,0 @@ "jest": {

@@ -0,1 +1,3 @@

Builds: [![CircleCI](https://circleci.com/gh/atlassian/yarn-deduplicate.svg?style=svg)](https://circleci.com/gh/atlassian/yarn-deduplicate)
# Yarn deduplicate

@@ -6,4 +8,4 @@

A duplicate package is when two dependencies are resolved to a different version, even when a single
version will sufice to match the range specified in the dependencies. See the section 'Deduplication
strategies' for a few examples.
version matches the range specified in the dependencies. See the [Deduplication
strategies](#deduplication-strategies) section for a few examples.

@@ -63,3 +65,3 @@ ## Installation

overlap. For example, if your project depends on `underscore@^1.0.0` and `underscore@^2.0.0`. Your
project will end up with two versions of `underscore`, and `yarn-tools` won't change that.
project will end up with two versions of `underscore`, and `yarn-deduplicate` won't change that.

@@ -66,0 +68,0 @@ When using `yarn-deduplicate` remember that **it will change your dependency tree**. There are

Sorry, the diff of this file is not supported yet

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