File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/_tools/release/package-json Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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' ) ) {
You can’t perform that action at this time.
0 commit comments