This downloads and installs dependencies necessary to run or develop. Add docker-compose.yml for initial use
13 lines
265 B
Bash
Executable File
13 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file belongs to the framework. You are not expected to modify it.
|
|
|
|
set -eu
|
|
|
|
node_shim_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# shellcheck source=node.common
|
|
source "$node_shim_DIR"/node.common
|
|
|
|
exec "$nodejs_binary_dir/node" "$@"
|