Skip to content

Commit d5d2ef4

Browse files
authored
fix: comment path if it is unused
1 parent 361931e commit d5d2ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/publish.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const glob = require('glob');
22
const semver = require('semver');
33
const { execSync } = require('child_process');
4-
const path = require('path');
4+
// const path = require('path');
55

66
function getLatestVersion(files) {
77
console.log('Files passed to getLatestVersion:', files);
@@ -87,4 +87,4 @@ const args = process.argv.slice(2);
8787
const browserIndex = args.indexOf('--b');
8888
const browsers = browserIndex !== -1 ? args.slice(browserIndex + 1) : [];
8989

90-
runPublishCommand(browsers);
90+
runPublishCommand(browsers);

0 commit comments

Comments
 (0)