cryptpad/scripts/copy-components.js
Pamplemousse 871110ec12 removing bower: migrate chainpad*
Also, explicitly add `chainpad-netflux`.

Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:41 +01:00

29 lines
651 B
JavaScript

const Fs = require("fs");
const Fse = require("fs-extra");
const Path = require("path");
const componentsPath = Path.join("www", "components");
Fse.mkdirpSync(componentsPath);
[
"jquery",
"tweetnacl",
"ckeditor",
"codemirror",
"marked",
"rangy",
"components-font-awesome",
"requirejs",
"requirejs-plugins",
"json.sortify",
"hyper-json",
"chainpad",
"chainpad-crypto",
"chainpad-listmap",
"chainpad-netflux",
].forEach(l => {
const source = Path.join("node_modules", l);
const destination = Path.join(componentsPath, l);
Fs.cpSync(source, destination, { recursive: true });
});