From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED, CONTENT_AFTER_HTML,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, URIBL_BLOCKED,URIBL_DBL_BLOCKED_OPENDNS autolearn=no autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1696301561; bh=+yGKY4b9f2mSLDl+VT+GR8U20j6C07zgOGbXUPW15i8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=elhIcejn4HT1mL1//Dn7H8bfwolrCLy3oCktAKH0mvnIn00NOmnByUIrPvLv9VxDJ kk/Ud7vo4br8i3SfySPRFN9jwxvgbBZaYAji5Okmo9Gehn5QTf/6+EXlQodMC7o/Dj +e0Zds7W/ZsttB4SxQaIeC/3Elykni0eW2d5cVvZU4k/IGvFyr0FWEie076wZOY9Iq QTTR3z8HhbnLVyqE0fJCwOBXaBZ+BNZQ+Voi6QqwTXQc/CO5wN/eCPiMJjNpO5vExh 6yk+sOOvgrF09IPM4zLVIpARZ8U7qh5TZE/MYiHY8wKR0XjU+cgi2Pt0e5Phvhg6w3 /x+reqeGJdxFA== Received: from localhost.localdomain (unknown [175.158.50.50]) by gnuweeb.org (Postfix) with ESMTPSA id 7A15424B8DD; Tue, 3 Oct 2023 09:52:39 +0700 (WIB) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , Irvan Malik Azantha , Memet Zx , GNU/Weeb Mailing List Subject: [PATCH v1 13/13] chore: remove unused files Date: Tue, 3 Oct 2023 09:51:46 +0700 Message-Id: <20231003025146.1557-14-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20231003025146.1557-1-kiizuha@gnuweeb.org> References: <20231003025146.1557-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This commit removes the unused files `build.js`, `index.html`, and `style.css`, as they are no longer in use. Signed-off-by: Muhammad Rizki --- build.js | 37 --- index.html | 644 ----------------------------------------------------- style.css | 57 ----- 3 files changed, 738 deletions(-) delete mode 100644 build.js delete mode 100644 index.html delete mode 100644 style.css diff --git a/build.js b/build.js deleted file mode 100644 index 1c85989..0000000 --- a/build.js +++ /dev/null @@ -1,37 +0,0 @@ -const { minify } = require("html-minifier-terser"); -const fs = require("fs"); -const path = require("path"); - -const htmlMinifierOptions = { - caseSensitive: true, - collapseBooleanAttributes: true, - collapseInlineTagWhitespace: true, - collapseWhitespace: true, - html5: true, - minifyJS: true, - minifyCSS: true, - removeComments: true, -}; - -const htmlMinify = (html) => minify(html, htmlMinifierOptions); - -const htmlMinifyFile = (file) => { - const filePath = path.join(__dirname, file); - const html = fs.readFileSync(filePath, "utf8"); - const minifiedHtml = htmlMinify(html) - .then((minifiedHtml) => { - fs.writeFileSync(filePath, minifiedHtml); - }) - .catch((err) => { - console.log(`[ERROR] ${err}`); - }) - .finally(() => { - console.log(`[INFO] ${filePath} minified.`); - }); - - return () => minifiedHtml; -}; - -htmlMinifyFile("dist/index.html"); - -console.log("HTML minified."); diff --git a/index.html b/index.html deleted file mode 100644 index 5c6eef3..0000000 --- a/index.html +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - - - - - - - - - - - - GNU/Weeb Landing - - - - - - - - - - - -
- - - - - -
- - -
- -
-
-
- GNU/Weeb's GitHub Profile Picture -
-
-
- GNU/Weeb -
- -
-
-
-

About

-

- We are working to build community through open source technology. -

-
- Note:
- Members on GitHub must have two-factor auth. -
-
-
-
- - -
-
-

Mailing List

-
-
-
-

- gwml@vger.gnuweeb.org -

- -
-
-
- - -
-
-

Useful Links

-
- -
- -
- - - -
- -
-

- © 2023 GNU/Weeb.
Licensed under BSD 3-Clause License. -

-
- - - - - - diff --git a/style.css b/style.css deleted file mode 100644 index 19d1659..0000000 --- a/style.css +++ /dev/null @@ -1,57 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - - -.chat { - @apply grid gap-x-3 py-1 -} - -.chat-start { - @apply place-items-start grid-cols-[auto,1fr]; -} - -.chat-image { - @apply row-span-2 self-end; -} - -.chat-start .chat-image { - @apply col-start-1; -} - -.chat-start .chat-header { - @apply col-start-2; -} - -.chat-bubble { - @apply relative block w-fit px-4 py-2 max-w-[90%] rounded-2xl - min-h-[2.75rem] min-w-[2.75rem] bg-neutral-900 text-neutral-500; -} - -.chat-bubble::before { - @apply absolute bottom-0 h-3 w-3 bg-inherit content-[""]; - mask-size: contain; - -webkit-mask-size: contain; - mask-repeat: no-repeat; - -webkit-mask-repeat: no-repeat; - mask-position: center; - -webkit-mask-position: center; -} - -.chat-start .chat-bubble { - @apply col-start-2 rounded-bl-none; -} - -.chat-start .chat-bubble::before { - @apply content-[""] -left-3; - mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e"); - -webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e"); -} - -.avatar { - @apply relative inline-flex; -} - -.avatar > div { - @apply block aspect-square overflow-hidden; -} -- Muhammad Rizki