Remove import comments.
This commit is contained in:
parent
5969b023bb
commit
35b156ba5a
|
@ -1,12 +1,9 @@
|
||||||
// Import native Node libraries.
|
|
||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import process from "node:process";
|
import process from "node:process";
|
||||||
import fsp from "node:fs/promises";
|
import fsp from "node:fs/promises";
|
||||||
// Import Esbuild and associated plugins.
|
|
||||||
import esbuild from "esbuild";
|
import esbuild from "esbuild";
|
||||||
import copyPlugin from "esbuild-copy-static-files";
|
import copyPlugin from "esbuild-copy-static-files";
|
||||||
import {sassPlugin} from "esbuild-sass-plugin";
|
import {sassPlugin} from "esbuild-sass-plugin";
|
||||||
// Import PostCSS and associated plugins.
|
|
||||||
import cssnano from "cssnano";
|
import cssnano from "cssnano";
|
||||||
import postcss from "postcss";
|
import postcss from "postcss";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
// Third-party imports.
|
|
||||||
import {Component} from "preact";
|
import {Component} from "preact";
|
||||||
// First-party imports.
|
|
||||||
import {type SharedProps} from "./shared.js";
|
import {type SharedProps} from "./shared.js";
|
||||||
|
|
||||||
export class BigDate extends Component<SharedProps> {
|
export class BigDate extends Component<SharedProps> {
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
// Third-party imports.
|
|
||||||
import {setup} from "@holllo/test";
|
import {setup} from "@holllo/test";
|
||||||
// First-party imports.
|
|
||||||
import {DateWrapper} from "./date.js";
|
import {DateWrapper} from "./date.js";
|
||||||
|
|
||||||
await setup("DateWrapper", async (group) => {
|
await setup("DateWrapper", async (group) => {
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
// Third-party imports.
|
|
||||||
import {render} from "preact";
|
import {render} from "preact";
|
||||||
// CSS imports.
|
|
||||||
import "modern-normalize/modern-normalize.css";
|
import "modern-normalize/modern-normalize.css";
|
||||||
import "./global.scss";
|
import "./global.scss";
|
||||||
// First-party imports.
|
|
||||||
import {App} from "./app.js";
|
import {App} from "./app.js";
|
||||||
|
|
||||||
if ($dev) {
|
if ($dev) {
|
||||||
|
|
Loading…
Reference in New Issue