This commit is contained in:
parent
6799b5fa42
commit
25f0ee71d8
29
src/index.ts
29
src/index.ts
|
@ -8,9 +8,9 @@ import fs from "fs-extra";
|
||||||
import cryptoRandomString from "crypto-random-string";
|
import cryptoRandomString from "crypto-random-string";
|
||||||
import { html, HTML } from "@leafac/html";
|
import { html, HTML } from "@leafac/html";
|
||||||
import { css, process as processCSS } from "@leafac/css";
|
import { css, process as processCSS } from "@leafac/css";
|
||||||
|
import javascript from "tagged-template-noop";
|
||||||
import { sql, Database } from "@leafac/sqlite";
|
import { sql, Database } from "@leafac/sqlite";
|
||||||
import databaseMigrate from "@leafac/sqlite-migration";
|
import databaseMigrate from "@leafac/sqlite-migration";
|
||||||
import javascript from "tagged-template-noop";
|
|
||||||
|
|
||||||
const VERSION = require("../package.json").version;
|
const VERSION = require("../package.json").version;
|
||||||
|
|
||||||
|
@ -109,17 +109,6 @@ export default function killTheNewsletter(
|
||||||
monospace;
|
monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
|
||||||
button {
|
|
||||||
color: inherit;
|
|
||||||
text-decoration: none;
|
|
||||||
transition: color 0.2s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #58a6ff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
@ -156,6 +145,20 @@ export default function killTheNewsletter(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
button {
|
||||||
|
transition: color 0.2s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #58a6ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -507,5 +510,5 @@ if (require.main === module) {
|
||||||
process.argv[2] ?? path.join(process.cwd(), "configuration.js")
|
process.argv[2] ?? path.join(process.cwd(), "configuration.js")
|
||||||
);
|
);
|
||||||
require(configurationFile)(require);
|
require(configurationFile)(require);
|
||||||
console.log(`Configuration file loaded from ‘${configurationFile}’.`);
|
console.log(`Configuration loaded from ‘${configurationFile}’.`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue