| # Copyright 2016 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| from os import path as os_path |
| NODE_MODULES = os_path.join(os_path.dirname(__file__), 'node_modules') |
| def _path_in_node_modules(*args): |
| return os_path.join(NODE_MODULES, *args) |
| return _path_in_node_modules('eslint', 'bin', 'eslint') |
| def PathToHtmlMinifier(): |
| return _path_in_node_modules('html-minifier', 'cli.js') |
| return _path_in_node_modules('@rollup', 'wasm-node', 'dist', 'bin', 'rollup') |
| return _path_in_node_modules('svgo', 'bin', 'svgo') |
| return _path_in_node_modules('terser', 'bin', 'terser') |
| return _path_in_node_modules('typescript', 'bin', 'tsc') |