Skip to content

Commit 6e53102

Browse files
committed
Fix style issues
1 parent f35b396 commit 6e53102

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/_tools/release/package-json

lib/node_modules/@stdlib/_tools/release/package-json/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @license Apache-2.0
55
*
6-
* Copyright (c) 2018 The Stdlib Authors.
6+
* Copyright (c) 2019 The Stdlib Authors.
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/_tools/release/package-json/lib/main.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,11 @@ function ascending( a, b ) {
102102
}
103103

104104
/**
105-
* Removes duplicate values from a numeric array. Note: the input array is mutated.
105+
* Removes duplicate values from a numeric array.
106+
*
107+
* ## Notes
108+
*
109+
* - The input array is mutated.
106110
*
107111
* @private
108112
* @param {Array} arr - array to be deduped
@@ -205,7 +209,7 @@ function prepare( pkgName, options ) {
205209
// Sort the package names with external dependencies on top and `@stdlib` ones afterwards:
206210
dependencies.sort( pkgNameSorter );
207211

208-
debug( 'Found '+dependencies.length+'unique dependencies to add: '+dependencies.join( ', ' ) );
212+
debug( 'Found '+dependencies.length+' unique dependencies to add: '+dependencies.join( ', ' ) );
209213
for ( i = 0; i < dependencies.length; i++ ) {
210214
val = dependencies[ i ];
211215
if ( startsWith( val, '@stdlib' ) ) {

0 commit comments

Comments
 (0)