Skip to content

Commit

Permalink
chore: merge pull request #132 from feat/update-html
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt authored Feb 21, 2024
2 parents 2f376e8 + b8c52e6 commit 7b27ac4
Show file tree
Hide file tree
Showing 17 changed files with 950 additions and 306 deletions.
54 changes: 46 additions & 8 deletions .changelogrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,51 @@
{
"header": "Changelog",
"types": [
{ "type": "feat", "section": "🌟 Features" },
{ "type": "fix", "section": "🐛 Bug Fixes" },
{ "type": "chore", "hidden": true },
{ "type": "docs", "section": "📖 Documentation" },
{ "type": "style", "hidden": true },
{ "type": "refactor", "hidden": true },
{ "type": "perf", "section": "🚀 Performance" },
{ "type": "test", "hidden": true }
{
"type": "feat",
"section": "🌟 Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "chore",
"section": "🧰 Chores",
"hidden": false
},
{
"type": "docs",
"section": "📖 Documentation",
"hidden": false
},
{
"type": "style",
"section": "💅 Style",
"hidden": false
},
{
"type": "refactor",
"section": "✨ Refactor",
"hidden": false
},
{
"type": "perf",
"section": "🚀 Performance",
"hidden": false
},
{
"type": "test",
"section": "🧪 Tests",
"hidden": false
},
{
"type": "build",
"section": "🛠️ Build",
"hidden": false
},
{ "type": "ci", "section": "🤖 CI", "hidden": false }
]
}
36 changes: 31 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -41,8 +42,8 @@ build/Release
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -53,6 +54,9 @@ typings/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -68,29 +72,41 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# dotenv environment variable files
.env
.env.test
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -103,6 +119,16 @@ dist
# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Local history
.history/

Expand Down
54 changes: 46 additions & 8 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,52 @@
"presetConfig": {
"header": "Changelog",
"types": [
{ "type": "feat", "section": "🌟 Features" },
{ "type": "fix", "section": "🐛 Bug Fixes" },
{ "type": "chore", "hidden": true },
{ "type": "docs", "section": "📖 Documentation" },
{ "type": "style", "hidden": true },
{ "type": "refactor", "section": "✨ Refactor" },
{ "type": "perf", "section": "🚀 Performance" },
{ "type": "test", "hidden": true }
{
"type": "feat",
"section": "🌟 Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "chore",
"section": "🧰 Chores",
"hidden": false
},
{
"type": "docs",
"section": "📖 Documentation",
"hidden": false
},
{
"type": "style",
"section": "💅 Style",
"hidden": false
},
{
"type": "refactor",
"section": "✨ Refactor",
"hidden": false
},
{
"type": "perf",
"section": "🚀 Performance",
"hidden": false
},
{
"type": "test",
"section": "🧪 Tests",
"hidden": false
},
{
"type": "build",
"section": "🛠️ Build",
"hidden": false
},
{ "type": "ci", "section": "🤖 CI", "hidden": false }
]
}
}
Expand Down
7 changes: 7 additions & 0 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,9 @@
},
{
"$ref": "#/files/paths/contributing"
},
{
"$ref": "#/files/paths/aliveserver"
}
]
},
Expand Down Expand Up @@ -752,6 +755,10 @@
"vitestconfig": {
"from": "vitest.config.ts",
"to": "vitest.config.ts"
},
"aliveserver": {
"from": "alive-server.json",
"to": ".alive-server.json"
}
}
},
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,34 +48,34 @@
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.17",
"@types/node": "^20.11.19",
"@types/which": "^3.0.3",
"@types/yeoman-assert": "^3.1.4",
"@types/yosay": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@yeoman/types": "^1.1.2",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"doctoc": "^2.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.10",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"ncp": "^2.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.2",
"terser": "^5.27.0",
"terser": "^5.27.2",
"tsup": "^8.0.2",
"type-fest": "^4.10.2",
"typescript": "^5.3.3",
"vite-node": "^1.2.2",
"vite-node": "^1.3.1",
"vitest": "^0.34.6",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^4.3.0",
Expand Down
Loading

0 comments on commit 7b27ac4

Please sign in to comment.