Skip to content

Commit

Permalink
feat: first version
Browse files Browse the repository at this point in the history
  • Loading branch information
razonyang committed Nov 30, 2023
0 parents commit 4e4da01
Show file tree
Hide file tree
Showing 24 changed files with 221 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
github: razonyang
custom:
- https://paypal.me/razonyang
15 changes: 15 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: lint

on:
push:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- run: npm ci
- run: npm run lint
18 changes: 18 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
command: manifest
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public/
resources/
.hugo_build.lock
node_modules/
14 changes: 14 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
pull_request_rules:
- name: Automatic merge for Renovate pull requests
conditions:
- author=renovate[bot]
actions:
merge:
method: rebase

- name: Automatic merge on approval
conditions:
- "#approved-reviews-by>=1"
actions:
merge:
method: rebase
16 changes: 16 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"plugins": ["prettier-plugin-go-template"],
"bracketSameLine": true,
"goTemplateBracketSpacing": true,
"overrides": [
{
"files": [
"*.html"
],
"options": {
"parser": "go-template",
"bracketSameLine": true
}
}
]
}
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.0.1"
}
1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.tmpl.scss
9 changes: 9 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"color-function-notation": null,
"scss/at-rule-no-unknown": true,
"scss/at-extend-no-missing-placeholder": null
}
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 HB Framework Authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# HB Revision Module

[![Used By](https://img.shields.io/badge/dynamic/json?color=success&label=used+by&query=repositories_humanize&logo=hugo&style=flat-square&url=https://api.razonyang.com/v1/github/dependents/hbstack/revision)](https://github.com/hbstack/revision/network/dependents)
![Hugo Requirements](https://img.shields.io/badge/dynamic/json?color=important&label=requirements&query=requirements&logo=hugo&style=flat-square&url=https://api.razonyang.com/v1/hugo/modules/github.com/hbstack/revision)
[![License](https://img.shields.io/github/license/hbstack/revision?style=flat-square)](https://github.com/hbstack/revision/blob/main/LICENSE)
[![Version](https://img.shields.io/github/v/tag/hbstack/revision?label=version&style=flat-square)](https://github.com/hbstack/revision/tags)
Empty file.
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/hbstack/revision

go 1.19
5 changes: 5 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[[module.imports]]
path = "github.com/hugomods/icons/vendors/bootstrap"

[params.hb.revision]
date_format = ":date_full"
5 changes: 5 additions & 0 deletions i18n/en.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[created_at]
other = "Created at {{ .Date }}"

[revised_at]
other = "Revised at {{ .Date }}"
5 changes: 5 additions & 0 deletions i18n/zh-hans.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[created_at]
other = "创建于{{ .Date }}"

[revised_at]
other = "修正于{{ .Date }}"
5 changes: 5 additions & 0 deletions i18n/zh-hant.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[created_at]
other = "創建於{{ .Date }}"

[revised_at]
other = "修正於{{ .Date }}"
16 changes: 16 additions & 0 deletions layouts/partials/hb/modules/revision/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div class="hb-module hb-revision text-body-secondary">
{{- $params := site.Params.hb.revision }}
{{- $format := default ":date_full" $params.date_format }}
{{- if ne .Lastmod .Date }}
{{- $lastmod := .Lastmod | time.Format $format }}
<span class="hb-revision-lastmod" title="{{ i18n `revised_at` (dict `Date` $lastmod) }}">
{{ partial "icons/icon" (dict "vendor" "bs" "name" "pencil-square") }}
<span>{{ $lastmod }}</span>
</span>
{{- end }}
{{- $date := .Date | time.Format $format }}
<span class="hb-revision-date ms-2" title="{{ i18n `created_at` (dict `Date` $date) }}">
{{ partial "icons/icon" (dict "vendor" "bs" "name" "calendar-plus") }}
<span>{{ $date }}</span>
</span>
</div>
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "hb-mod-revision",
"repository": {
"type": "git",
"url": "git+https://github.com/hbstack/revision.git"
},
"author": "Razon Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hbstack/revision/issues"
},
"homepage": "https://github.com/hbstack/revision",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"prettier": "^3.0.0",
"prettier-plugin-go-template": "^0.0.15",
"stylelint": "^15.1.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.0.0",
"ts-standard": "^12.0.2"
},
"scripts": {
"lint": "npm run eslint && npm run stylelint",
"eslint": "ts-standard",
"stylelint": "npx stylelint \"**/*.scss\""
}
}
22 changes: 22 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"monorepo-tags": true,
"release-type": "go",
"tag-separator": "/",
"changelog-sections": [
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
{ "type": "ci", "section": "Continuous Integration" },
{ "type": "docs", "section": "Documentation 📝" },
{ "type": "feat", "section": "Features ✨" },
{ "type": "feature", "section": "Features ✨" },
{ "type": "fix", "section": "Bug Fixes 🐞" },
{ "type": "perf", "section": "Performance Improvements ⚡️" },
{ "type": "style", "section": "Styles 🎨" }
],
"packages": {
".": {
"exclude-paths": [
]
}
}
}
14 changes: 14 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":dependencyDashboard"
],
"packageRules": [
{
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": true
}
]
}
9 changes: 9 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"preserveConstEnums": true,
"strictNullChecks": true
},
"include": ["assets/**/*"],
"exclude": ["node_modules"]
}

0 comments on commit 4e4da01

Please sign in to comment.