Skip to content

Commit

Permalink
this
Browse files Browse the repository at this point in the history
  • Loading branch information
hainm committed Nov 22, 2024
1 parent 40c78d1 commit e8d3a47
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,13 @@ def run(self):
("share/jupyter/labextensions/%s" % labext_name, str(HERE), "install.json"),
]

cmdclass = wrap_installers(pre_develop="jsdeps", pre_dist="jsdeps")
def pre_develop():
pass

def pre_dist():
pass

cmdclass = wrap_installers(pre_develop=pre_develop, pre_dist=pre_dist)
data_files = get_data_files(data_files_spec)
cmdclass['jsdeps'] = NPM
cmdclass['egg_info'] = js_prerelease(egg_info)
Expand Down

0 comments on commit e8d3a47

Please sign in to comment.