mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-15 15:44:26 -04:00
20 lines
448 B
Python
20 lines
448 B
Python
__package__ = 'plugins_pkg.npm'
|
|
|
|
|
|
from abx.archivebox.base_configset import BaseConfigSet
|
|
|
|
|
|
###################### Config ##########################
|
|
|
|
|
|
class NpmDependencyConfigs(BaseConfigSet):
|
|
# USE_NPM: bool = True
|
|
# NPM_BINARY: str = Field(default='npm')
|
|
# NPM_ARGS: Optional[List[str]] = Field(default=None)
|
|
# NPM_EXTRA_ARGS: List[str] = []
|
|
# NPM_DEFAULT_ARGS: List[str] = []
|
|
pass
|
|
|
|
|
|
NPM_CONFIG = NpmDependencyConfigs()
|
|
|