Skip to content

Commit 16930ba

Browse files
committed
Fix lint error for publish attachment fix
1 parent 8fd425b commit 16930ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/put/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default async ({
6666
}
6767

6868
json['dist-tags'][tag] = version;
69-
json._attachments = {};
69+
json._attachments = {}; // eslint-disable-line no-underscore-dangle
7070
json._attachments[`${name}-${version}.tgz`] = pkg._attachments[`${name}-${version}.tgz`]; // eslint-disable-line no-underscore-dangle
7171
json.versions[version] = versionData;
7272
} catch (storageError) {

0 commit comments

Comments
 (0)