New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

make-deps-exact

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

make-deps-exact - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.1.3](https://github.com/danielpza/make-deps-exact/compare/v0.1.2...v0.1.3) (2023-02-23)
### Features
* add --quiet option ([7168555](https://github.com/danielpza/make-deps-exact/commit/71685551dd52bd7d691bd05c73545a737d3212c0))
### [0.1.2](https://github.com/danielpza/make-deps-exact/compare/v0.1.1...v0.1.2) (2023-02-10)

@@ -7,0 +14,0 @@

13

dep.js

@@ -12,4 +12,5 @@ #!/usr/bin/env node

--skip-git skip git+ssh protocol
--dry do not write to package.json
--help show help message
-d,--dry do not write to package.json
-q,--quiet do not output changes to console
-h,--help show help message
`;

@@ -27,2 +28,6 @@

},
quiet: {
type: "boolean",
short: "q",
},
help: {

@@ -35,3 +40,3 @@ type: "boolean",

const { ["skip-git"]: skipGit, dry, help } = values;
const { ["skip-git"]: skipGit, dry, help, quiet } = values;

@@ -54,3 +59,3 @@ if (help) {

if (version !== actual) {
console.log(`changing ${key} from ${version} to ${actual}`);
if (!quiet) console.log(`changing ${key} from ${version} to ${actual}`);
pkg[mode][key] = actual;

@@ -57,0 +62,0 @@ }

{
"name": "make-deps-exact",
"version": "0.1.2",
"version": "0.1.3",
"description": "Remove version range from package.json",

@@ -5,0 +5,0 @@ "type": "module",

@@ -17,7 +17,8 @@ # make-deps-exact [![npm](https://img.shields.io/npm/v/make-deps-exact)](https://www.npmjs.com/package/make-deps-exact)

```shell
```
make-deps-exact [...opts]
--skip-git skip git+ssh protocol
--dry do not write to package.json
--help show help message
-d,--dry do not write to package.json
-q,--quiet do not output changes to console
-h,--help show help message
```

@@ -24,0 +25,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