You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The generated chroma.js differs depending on the directory name of the git clone of this repo. The last few lines of chroma.js in this repo read:
var chroma_js = chroma_1;
return chroma_js;
})));
But those lines will be different if chroma.js is cloned into a repository with a different name. For example if I clone into a directory named buildExperiment1 then the last few lines of chroma.js will read:
var buildExperiment1 = chroma_1;
return buildExperiment1;
})));
The contents of chroma.js should not depend on the path of the git checkout.
The text was updated successfully, but these errors were encountered:
The generated chroma.js differs depending on the directory name of the git clone of this repo. The last few lines of chroma.js in this repo read:
But those lines will be different if chroma.js is cloned into a repository with a different name. For example if I clone into a directory named
buildExperiment1
then the last few lines of chroma.js will read:The contents of chroma.js should not depend on the path of the git checkout.
The text was updated successfully, but these errors were encountered: