Skip to content

Commit

Permalink
Merge pull request #7 from gethyas/next
Browse files Browse the repository at this point in the history
Move dependencies from gethyas to @hyas/core
  • Loading branch information
h-enk authored Apr 19, 2024
2 parents fa388df + e62432e commit b006d21
Show file tree
Hide file tree
Showing 9 changed files with 6,954 additions and 3,259 deletions.
18 changes: 9 additions & 9 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "gethyas/core" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "gethyas/core" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/nine-sheep-know.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hyas/core": minor
---

Move dependencies from gethyas to @hyas/core
11 changes: 11 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
*.html
*.ico
*.png
*.jp*g
*.toml
*.*ignore
*.svg
*.xml
LICENSE
.npmrc
.gitkeep
*.woff*
14 changes: 7 additions & 7 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ experimentalTernaries: true

# Overrided config
overrides:
- files: ["*.md"]
options:
tabWidth: 2
singleQuote: false
- files: ["*.scss"]
options:
singleQuote: false
- files: ['*.md']
options:
tabWidth: 2
singleQuote: false
- files: ['*.scss']
options:
singleQuote: false
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.wordWrap": "off",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"editor.insertSpaces": true
}
2 changes: 2 additions & 0 deletions assets/scss/app.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/** Import modern-css-reset */
@import "modern-css-reset/src/reset";
12 changes: 7 additions & 5 deletions layouts/partials/head/seo-default.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{{ if .IsHome -}}
<title>{{ .Site.Params.title }} {{ .Site.Params.titleSeparator }} {{ .Site.Params.titleAddition }}</title>
{{ else -}}
<title>{{ .Title }} {{ .Site.Params.titleSeparator }} {{ .Site.Params.title }}</title>
{{ end -}}
{{- $title := "" }}
{{- if .Params.title }}
{{ $title = .Params.title }}
{{- else }}
{{ $title = site.Params.title }}
{{- end }}
<title>{{ $title }}</title>

{{- $description := "" }}
{{- if .Params.description }}
Expand Down
Loading

0 comments on commit b006d21

Please sign in to comment.