chroma.js icon indicating copy to clipboard operation
chroma.js copied to clipboard

does not build reproducibly

Open josch opened this issue 2 years ago • 0 comments

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.

josch avatar Nov 02 '21 13:11 josch