Skip to content

Commit d48530c

Browse files
committed
fix: update redundant paths for make and cli
Signed-off-by: Snehil Shah <snehilshah.989@gmail.com> --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: failed ---
1 parent b7b5082 commit d48530c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/cli_commands.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,13 +788,13 @@
788788
{
789789
"command": "repl",
790790
"description": "Start a REPL.",
791-
"path": "@stdlib/repl",
791+
"path": "@stdlib/repl/cli",
792792
"group": "general"
793793
},
794794
{
795795
"command": "repl-presentation",
796796
"description": "Start a REPL presentation.",
797-
"path": "@stdlib/repl/presentation",
797+
"path": "@stdlib/repl/cli/presentation",
798798
"group": "general"
799799
},
800800
{

lib/node_modules/@stdlib/repl/cli/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var append = require( '@stdlib/utils/append' );
4646
var nextTick = require( '@stdlib/utils/next-tick' );
4747
var Boolean = require( '@stdlib/boolean/ctor' );
4848
var assign = require( '@stdlib/object/assign' );
49-
var BaseREPL = require( '@stdlib/repl/base' );
49+
var BaseREPL = require( '@stdlib/repl/base/ctor' );
5050
var validate = require( './validate.js' );
5151
var parseKey = require( './parse_key.js' );
5252
var defaults = require( './defaults.js' );

0 commit comments

Comments
 (0)