We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e022582 commit 30cf485Copy full SHA for 30cf485
lib/node_modules/@stdlib/_tools/scripts/publish_packages.js
@@ -1042,7 +1042,7 @@ function publish( pkg, clbk ) {
1042
1043
if ( !isTopLevelNS ) {
1044
// Replace `@stdlib/bench` with `@stdlib/bench-harness` in standalone packages:
1045
- command = 'find '+dist+' -type f -name \'*.js\' -print0 | xargs -0 sed -i \'s/@stdlib\\/bench/@stdlib\\/bench-harness/g\'';
+ command = 'find '+dist+' -type f -name \'*.js\' -print0 | xargs -0 sed -i "s/\'@stdlib\\/bench\'/\'@stdlib\\/bench-harness\'/g"';
1046
shell( command );
1047
pkgJSON.devDependencies[ '@stdlib/bench-harness' ] = npmVersion( '@stdlib/bench-harness' );
1048
delete pkgJSON.devDependencies[ '@stdlib/bench' ];
0 commit comments