Skip to content

Commit

Permalink
fix: escape pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmlnc committed May 25, 2019
1 parent e511e0c commit 62be608
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
"bench": "npm run bench-async && npm run bench-sync",
"bench-async": "npm run bench-async-flatten && npm run bench-async-deep",
"bench-sync": "npm run bench-sync-flatten && npm run bench-sync-deep",
"bench-async-flatten": "node ./out/benchmark --type async --pattern *",
"bench-async-deep": "node ./out/benchmark --type async --pattern **",
"bench-sync-flatten": "node ./out/benchmark --type sync --pattern *",
"bench-sync-deep": "node ./out/benchmark --type sync --pattern **"
"bench-async-flatten": "node ./out/benchmark --type async --pattern \"*\"",
"bench-async-deep": "node ./out/benchmark --type async --pattern \"**\"",
"bench-sync-flatten": "node ./out/benchmark --type sync --pattern \"*\"",
"bench-sync-deep": "node ./out/benchmark --type sync --pattern \"**\""
}
}

0 comments on commit 62be608

Please sign in to comment.