1
Fork 0

Remove import comments.

This commit is contained in:
Bauke 2023-06-04 12:19:27 +02:00
parent 5969b023bb
commit 35b156ba5a
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
4 changed files with 0 additions and 10 deletions

View File

@ -1,12 +1,9 @@
// Import native Node libraries.
import path from "node:path";
import process from "node:process";
import fsp from "node:fs/promises";
// Import Esbuild and associated plugins.
import esbuild from "esbuild";
import copyPlugin from "esbuild-copy-static-files";
import {sassPlugin} from "esbuild-sass-plugin";
// Import PostCSS and associated plugins.
import cssnano from "cssnano";
import postcss from "postcss";

View File

@ -1,6 +1,4 @@
// Third-party imports.
import {Component} from "preact";
// First-party imports.
import {type SharedProps} from "./shared.js";
export class BigDate extends Component<SharedProps> {

View File

@ -1,6 +1,4 @@
// Third-party imports.
import {setup} from "@holllo/test";
// First-party imports.
import {DateWrapper} from "./date.js";
await setup("DateWrapper", async (group) => {

View File

@ -1,9 +1,6 @@
// Third-party imports.
import {render} from "preact";
// CSS imports.
import "modern-normalize/modern-normalize.css";
import "./global.scss";
// First-party imports.
import {App} from "./app.js";
if ($dev) {