def monitor_sketch(sketch_name, sketch_dir): """ Monitor for any change in any .py code under the sketch dir and, for every new change, runs the transcrypt to update the js files. :param sketch_name: name for new sketch :type sketch_name: string :param sketch_dir: directory name :type sketch_dir: string :return: file names :rtype: list of strings """ sketch_files = Pyp5jsSketchFiles(sketch_dir, sketch_name) if not sketch_files.check_sketch_exists(): cprint.err(f"Couldn't find {sketch_name}", interrupt=True) cprint( f"Monitoring for changes in {sketch_files.sketch_dir.absolute()}...") try: monitor_sketch_service(sketch_files) except KeyboardInterrupt: cprint.info("Exiting monitor...")
def monitor_sketch(sketch_name): """ Monitor for any change in any .py inside the sketch dir. For every new change, runs the transcrypt to update the js files. :param sketch_name: name for new sketch :type sketch_name: string :return: file names :rtype: list of strings """ sketch_files = SketchFiles(sketch_name) if not sketch_files.sketch_exists: raise PythonSketchDoesNotExist(sketch_files.sketch_py.resolve()) cprint(f"Monitoring for changes in {sketch_files.sketch_dir.resolve()}...") try: monitor_sketch_service(sketch_files) except KeyboardInterrupt: cprint.info("Exiting monitor...")