From 13d2786b7b51df927c8976dc767cc27e88bc8e84 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Mon, 10 Sep 2018 22:34:27 +0200 Subject: Moved scripts/copyAssets.js to resources folder and fixed formatting --- scripts/copyAssets.js | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 scripts/copyAssets.js (limited to 'scripts/copyAssets.js') diff --git a/scripts/copyAssets.js b/scripts/copyAssets.js deleted file mode 100644 index 3c425baa..00000000 --- a/scripts/copyAssets.js +++ /dev/null @@ -1,25 +0,0 @@ -const fs = require("fs"); -const path = require("path"); -const mkdirp = require("mkdirp"); - -const baseAssetPath = { - src: path.resolve("resources/assets"), - target: path.resolve("public/assets") -}; - -const emojiPath = { - src: baseAssetPath.src + "/emojis", - target: baseAssetPath.target + "/emojis" -}; - -mkdirp.sync(emojiPath.target); - -const emojis = fs.readdirSync(emojiPath.src); - -emojis.forEach(e => { - fs.copyFile(`${emojiPath.src}/${e}`, `${emojiPath.target}/${e}`, e => { - if (e) { - console.error(e); - } - }); -}); -- cgit v1.2.3-70-g09d2