v0.1.5 패키지 경고 및 개발 출력 수정

This commit is contained in:
2026-04-13 15:38:10 +09:00
parent d3c8059d56
commit d5bb44b0e2
2 changed files with 25 additions and 7 deletions

View File

@@ -49,11 +49,26 @@ body {
margin: 0; margin: 0;
background: var(--bg); background: var(--bg);
color: var(--text); color: var(--text);
font-family: var(--font-sans); font-family: var(--gh-font-body, var(--font-sans));
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }
h1,
h2,
h3,
h4,
h5,
h6,
.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4,
.gh-content h5,
.gh-content h6 {
font-family: var(--gh-font-heading, var(--font-sans));
}
a { a {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;

View File

@@ -1,17 +1,20 @@
{ {
"name": "ghost-theme-thred-clone", "name": "ghost-theme-thred-clone",
"version": "0.1.4", "version": "0.1.5",
"private": true, "private": true,
"description": "A Ghost theme inspired by the Thred reference layout.", "description": "A Ghost theme inspired by the Thred reference layout.",
"keywords": [
"ghost-theme",
"ghost",
"theme"
],
"author": { "author": {
"name": "zenn", "name": "zenn",
"email": "zenn.message@gmail.com" "email": "zenn.message@gmail.com"
}, },
"engines": {
"ghost-api": "v5"
},
"config": { "config": {
"posts_per_page": 10, "posts_per_page": 10,
"card_assets": true,
"image_sizes": { "image_sizes": {
"xxs": { "xxs": {
"width": 30 "width": 30
@@ -72,8 +75,8 @@
"dev:sync": "sh ./scripts/sync-theme.sh", "dev:sync": "sh ./scripts/sync-theme.sh",
"dev:seed": "node ./scripts/build-sample-content.js", "dev:seed": "node ./scripts/build-sample-content.js",
"dev:seed:zip": "npm run dev:seed && cd seed && zip -q -r thred-inspired-sample-content.ghost.zip thred-inspired-sample-content.ghost.json", "dev:seed:zip": "npm run dev:seed && cd seed && zip -q -r thred-inspired-sample-content.ghost.zip thred-inspired-sample-content.ghost.json",
"dev:ghost:start": "npm run dev:sync && docker compose up -d", "dev:ghost:start": "npm run dev:sync && docker compose up -d && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\n\\n'",
"dev:ghost:restart": "npm run dev:sync && docker compose restart ghost", "dev:ghost:restart": "npm run dev:sync && docker compose restart ghost && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\n\\n'",
"dev:ghost:stop": "docker compose down", "dev:ghost:stop": "docker compose down",
"zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'" "zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'"
} }