Skip to content

Commit

Permalink
build 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OzakIOne committed Feb 16, 2024
1 parent cb2f7df commit 53f5530
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dist/npm-to-yarn.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,10 @@ var npmToPnpmTable = {
};
function npmToPnpm(_m, command) {
var args = parse((command || '').trim());
var index = args.findIndex(function (a) { return a === '--'; });
if (index >= 0) {
args.splice(index, 1);
}
if (args[0] in npmToPnpmTable) {
var converter = npmToPnpmTable[args[0]];
if (typeof converter === 'function') {
Expand Down
2 changes: 1 addition & 1 deletion dist/npm-to-yarn.mjs.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/npm-to-yarn.umd.js

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

2 changes: 1 addition & 1 deletion dist/npm-to-yarn.umd.js.map

Large diffs are not rendered by default.

0 comments on commit 53f5530

Please sign in to comment.