File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
from distutils import log
10
10
11
11
project_root = os .path .dirname (os .path .abspath (__file__ ))
12
- node_root = os .path .join (project_root , "js " )
12
+ node_root = os .path .join (project_root , "plotly" , "labextension " )
13
13
is_repo = os .path .exists (os .path .join (project_root , ".git" ))
14
14
node_modules = os .path .join (node_root , "node_modules" )
15
15
targets = [
23
23
]
24
24
)
25
25
26
- # Load plotly.js version from js /package.json
26
+ # Load plotly.js version from plotly/labextension /package.json
27
27
def plotly_js_version ():
28
- path = os .path .join (project_root , "js " , "package.json" )
28
+ path = os .path .join (project_root , "plotly" , "labextension " , "package.json" )
29
29
with open (path , "rt" ) as f :
30
30
package_json = json .load (f )
31
31
version = package_json ["dependencies" ]["plotly.js" ]
You can’t perform that action at this time.
0 commit comments