Skip to content

Commit

Permalink
fix: broken links - ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pacifiquem authored and pacifiquem committed Oct 1, 2023
1 parent 4c22549 commit ea1b4c2
Show file tree
Hide file tree
Showing 4 changed files with 1,226 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
],
"rules": {
"no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"no-unused-expressions": ["error", {
"allowTernary": true
}]
}
}
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FTSA</title>
<title>string-hunt</title>
</head>
<body>
<div id="app"></div>
Expand Down
12 changes: 7 additions & 5 deletions demo/src/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export function App() {
<div className='text-white py-4 flex items-center justify-between'>
<h1>📦 string-hunt v0.0.3</h1>
<div className='flex items-center gap-4'>
<a>Github</a>
<a>npm</a>
<a href='https://github.com/regisrex/string-hunt' target='_black'>Github</a>
<a href='https://npmjs.com/package/string-hunt' target='_black'>npm</a>
</div>
</div>
<input type="text" className='bg-white/10 w-full text-lg text-white p-4 outline-none' placeholder='🔎 Your query here...' onChange={(e) => setQuery(e.target.value.trim())} />
Expand All @@ -27,9 +27,11 @@ export function App() {
<FormatJson title={"Output"} json={visible} />
</div>

<div className='text-white/60 flex items-center justify-between fixed bottom-0 gap-5' >
<h1>MIT LICENCE</h1> <span></span>
<h1>Maintained by <a>@pacifiquem</a> & <a>@regisrex</a> </h1>
<div className='flex items-center justify-center'>
<div className='text-white/60 flex items-center justify-between fixed bottom-0 gap-5' >
<h1>MIT LICENCE</h1> <span></span>
<h1>Maintained by <a href='https://github.com/pacifiquem' target='_black'>@pacifiquem</a> & <a href='https://github.com/regisrex' target='_black'>@regisrex</a> </h1>
</div>
</div>
</div>
)
Expand Down
Loading

0 comments on commit ea1b4c2

Please sign in to comment.