diff --git a/lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/main.js b/lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/main.js index 0765524c154e..0a17811819eb 100644 --- a/lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/main.js @@ -40,14 +40,10 @@ function plugin( dir, cwd ) { opts.cwd = dir; opts.stdio = 'inherit'; - args = new Array( 2 ); - // Environment variables: - args[ 0 ] = 'REPL_DIR='+cwd; - - // Target: - args[ 1 ] = 'repl'; + args = [ 'REPL_DIR=' + cwd, 'repl' ]; + // Spawn make process: spawn( 'make', args, opts ); } diff --git a/lib/node_modules/@stdlib/ndarray/base/broadcast-shapes/manifest.json b/lib/node_modules/@stdlib/ndarray/base/broadcast-shapes/manifest.json index 890a937a3dc0..00fc84840372 100644 --- a/lib/node_modules/@stdlib/ndarray/base/broadcast-shapes/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/base/broadcast-shapes/manifest.json @@ -1,38 +1,38 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [] - } - ] + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [] + } + ] } diff --git a/lib/node_modules/@stdlib/string/lib/index.js b/lib/node_modules/@stdlib/string/lib/index.js index 983cb19946e8..4f5e3a549e78 100644 --- a/lib/node_modules/@stdlib/string/lib/index.js +++ b/lib/node_modules/@stdlib/string/lib/index.js @@ -229,6 +229,15 @@ setReadOnly( string, 'nextCodePointIndex', require( '@stdlib/string/next-code-po */ setReadOnly( string, 'nextGraphemeClusterBreak', require( '@stdlib/string/next-grapheme-cluster-break' ) ); +/** +* @name numCodePoints +* @memberof string +* @readonly +* @type {Function} +* @see {@link module:@stdlib/string/num-code-points} +*/ +setReadOnly( string, 'numCodePoints', require( '@stdlib/string/num-code-points' ) ); + /** * @name numGraphemeClusters * @memberof string