Skip to content

Commit f30eca4

Browse files
committed
chore: 清理專案結構並更新依賴配置
- 更新 .gitignore 添加更多忽略規則 - 移除被錯誤追蹤的 node_modules/bulma 目錄 - 重命名主題為 cypherpunks-theme 並更新至 2.0.0 - 升級 Jekyll 依賴版本至 4.x - 更新資源文檔連結
1 parent 008c3e4 commit f30eca4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1394
-17541
lines changed

.gitignore

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
1-
.sass-cache
2-
.jekyll-cache
1+
# Jekyll
2+
.sass-cache/
3+
.jekyll-cache/
34
.jekyll-metadata
4-
node_modules
5+
_site/
6+
7+
# Node
8+
node_modules/
9+
package-lock.json
10+
11+
# Ruby
12+
vendor/
13+
.bundle/
14+
Gemfile.lock
15+
16+
# OS
517
.DS_Store
6-
_site
18+
Thumbs.db
19+
20+
# IDE
21+
.idea/
22+
.vscode/
23+
*.swp
24+
*.swo
25+
26+
# Logs
27+
*.log
28+
npm-debug.log*
29+
30+
# Temporary
31+
*.tmp
32+
*.temp

assets/css/app.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

bulma-clean-theme.gemspec

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
# frozen_string_literal: true
22

33
Gem::Specification.new do |spec|
4-
spec.name = "bulma-clean-theme"
5-
spec.version = "0.5.7"
6-
spec.authors = ["chrisrhymes"]
7-
spec.email = ["[email protected]"]
4+
spec.name = "cypherpunks-theme"
5+
spec.version = "2.0.0"
6+
spec.authors = ["Cypherpunks Taiwan"]
7+
spec.email = ["[email protected]"]
88

9-
spec.summary = "Clean and simple theme using Bulma"
10-
spec.homepage = "https://www.github.com/chrisrhymes/bulma-clean-theme"
9+
spec.summary = "Cypherpunk-style theme for Jekyll"
10+
spec.homepage = "https://github.com/cypherpunks-core/cypherpunks-core.github.io"
1111
spec.license = "MIT"
1212

13-
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|_posts|blog|LICENSE|README|package|node_modules|favicon.png|changelog.txt)!i) }
13+
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|_posts|blog|LICENSE|README|favicon.png)!i) }
1414

15-
spec.add_runtime_dependency "jekyll", "~> 3.8"
16-
spec.add_runtime_dependency "jekyll-feed", "~> 0.11"
17-
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.2"
15+
spec.add_runtime_dependency "jekyll", "~> 4.3"
16+
spec.add_runtime_dependency "jekyll-feed", "~> 0.17"
17+
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
1818
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
19-
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.5"
20-
spec.add_runtime_dependency "kramdown", ">= 1.17", "< 3.0"
21-
spec.add_runtime_dependency "rouge", "~> 3.3"
19+
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
20+
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1"
2221

23-
spec.add_development_dependency "bundler", "~> 2.0"
24-
spec.add_development_dependency "rake", "~> 12.0"
22+
spec.add_development_dependency "bundler", "~> 2.4"
2523
end

markdown/resources/resources-bitcoin.md

Lines changed: 180 additions & 47 deletions
Large diffs are not rendered by default.

markdown/resources/resources-blockchain-privacy.md

Lines changed: 247 additions & 183 deletions
Large diffs are not rendered by default.

markdown/resources/resources-ln.md

Lines changed: 216 additions & 214 deletions
Large diffs are not rendered by default.

markdown/resources/resources-schnorr-signature.md

Lines changed: 196 additions & 33 deletions
Large diffs are not rendered by default.

node_modules/.yarn-integrity

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)