We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2844510 commit 722c1d3Copy full SHA for 722c1d3
setup.py
@@ -120,14 +120,6 @@ def run(self):
120
if npm is None:
121
raise RuntimeError("NPM is not installed.")
122
123
- # Required when using NPM >3
124
- log.info(f"> Installing rollup, react, and react-dom")
125
- subprocess.run(f"{npm} install rollup".split(), cwd=js_dir, check=True)
126
- subprocess.run(f"{npm} install react".split(), cwd=js_dir, check=True)
127
- subprocess.run(
128
- f"{npm} install react-dom".split(), cwd=js_dir, check=True
129
- )
130
-
131
for args in (f"{npm} install", f"{npm} run build"):
132
args_list = args.split()
133
log.info(f"> {list2cmdline(args_list)}")
0 commit comments