cryptpad/scripts/copy-components.js
Pamplemousse 6c10407802 removing bower: migrate bootstrap
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:41 +01:00

33 lines
744 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",
].forEach(l => {
const source = Path.join("node_modules", l);
const destination = Path.join(componentsPath, l);
Fs.cpSync(source, destination, { recursive: true });
});