cryptpad/scripts/copy-components.js
Pamplemousse c40b013e72 removing bower: migrate netflux-websocket
Bump version to match requirements of `chainpad-netflux`.

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

45 lines
968 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",
"file-saver",
"alertify.js",
"scrypt-async",
"require-css",
"bootstrap",
"nthen",
"open-sans-fontface",
"bootstrap-tokenfield",
"localforage",
"html2canvas",
"croppie",
"sortablejs",
"saferphore",
"jszip",
"dragula",
"mathjax",
"netflux-websocket",
].forEach(l => {
const source = Path.join("node_modules", l);
const destination = Path.join(componentsPath, l);
Fs.cpSync(source, destination, { recursive: true });
});