Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [v1.14.2] - 2025-02-21

### Fixed

- Fix for - [#772](https://github.com/postmanlabs/postman-code-generators/issues/772) Ignore workspace dependencies while deepinstall for pnpm.

## [v1.14.1] - 2024-12-18

### Fixed
Expand Down Expand Up @@ -190,7 +196,9 @@ v1.0.0 (May 29, 2020)
- Add ES6 syntax support for NodeJS Request, NodeJS Native and NodeJS Unirest
- Fix snippet generation for powershell and jquery, where form data params had no type field

[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.1...HEAD
[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.2...HEAD

[v1.14.2]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.1...v1.14.2

[v1.14.1]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.0...v1.14.1

Expand Down
2 changes: 1 addition & 1 deletion npm/deepinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async.series([
}
break;
case 'pnpm':
command = 'pnpm install --prod';
command = 'pnpm install --ignore-workspace --prod';
break;
default:
command = pm + ' install --no-audit --production';
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postman-code-generators",
"version": "1.14.1",
"version": "1.14.2",
"description": "Generates code snippets for a postman collection",
"main": "index.js",
"directories": {
Expand Down
Loading