Skip to content

Commit d8c978b

Browse files
committed
Rename env vars
1 parent c25f9d6 commit d8c978b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

tools/make/lib/ls/pkgs/standalones.mk

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#/
22
# @license Apache-2.0
33
#
4-
# Copyright (c) 2017 The Stdlib Authors.
4+
# Copyright (c) 2021 The Stdlib Authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -19,29 +19,29 @@
1919
# VARIABLES #
2020

2121
# Define the path of the executable:
22-
LIST_PACKAGE_STANDALONES ?= $(TOOLS_PKGS_DIR)/pkgs/standalones/bin/cli
22+
LIST_PKGS_STANDALONES ?= $(TOOLS_PKGS_DIR)/pkgs/standalones/bin/cli
2323

2424
# Define the command flags:
25-
LIST_PACKAGE_STANDALONES_FLAGS ?=
25+
LIST_PKGS_STANDALONES_FLAGS ?=
2626

2727
# Define the directory from which to search for packages:
28-
LIST_PACKAGE_STANDALONES_DIR ?= $(SRC_DIR)
28+
LIST_PKGS_STANDALONES_DIR ?= $(SRC_DIR)
2929

3030

3131
# RULES #
3232

3333
#/
3434
# Prints a list of all standalone package names.
3535
#
36-
# @param {string} [LIST_PACKAGE_STANDALONES_DIR] - absolute path of the directory from which to search for packages (default: source directory)
36+
# @param {string} [LIST_PKGS_STANDALONES_DIR] - absolute path of the directory from which to search for packages (default: source directory)
3737
#
3838
# @example
3939
# make list-pkgs-standalones
4040
#
4141
# @example
42-
# make list-pkgs-standalones LIST_PACKAGE_STANDALONES_DIR=$PWD/lib/node_modules/\@stdlib/utils
42+
# make list-pkgs-standalones LIST_PKGS_STANDALONES_DIR=$PWD/lib/node_modules/\@stdlib/utils
4343
#/
44-
list-pkgs-standalones: $(LIST_PACKAGE_STANDALONES) $(NODE_MODULES)
45-
$(QUIET) NODE_PATH="$(NODE_PATH)" $(NODE) $(LIST_PACKAGE_STANDALONES) $(LIST_PACKAGE_STANDALONES_FLAGS) $(LIST_PACKAGE_STANDALONES_DIR)
44+
list-pkgs-standalones: $(LIST_PKGS_STANDALONES) $(NODE_MODULES)
45+
$(QUIET) NODE_PATH="$(NODE_PATH)" $(NODE) $(LIST_PKGS_STANDALONES) $(LIST_PKGS_STANDALONES_FLAGS) $(LIST_PKGS_STANDALONES_DIR)
4646

4747
.PHONY: list-pkgs-standalones

0 commit comments

Comments
 (0)