7 lines
142 B
Python
7 lines
142 B
Python
class Npm:
|
|
def __init__(self, install=None):
|
|
self.npm_install = install
|
|
|
|
def build(self, script):
|
|
script.append('""')
|