blob: c80089ca55eb936c7666f625dae63a0abb050080 [file] [log] [blame] [edit]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Run npm with the right settings."""
from __future__ import print_function
import sys
import libdot
def main(argv):
"""The main func!"""
libdot.setup_logging()
libdot.node_and_npm_setup()
libdot.node.run(['npm'] + argv)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))