Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniGuardiola committed Nov 5, 2023
0 parents commit 999ac38
Show file tree
Hide file tree
Showing 61 changed files with 2,938 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/tidy-maps-collect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tailwind-ink": major
---

Initial release
13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules/
\*.tsbuildinfo
.eslintcache

.env
.env.development.local
.env.test.local
.env.production.local
.env.local

dist/
.tshy/
.tshy-build-tmp/
34 changes: 34 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/** @type {import('eslint').Linter.Config} */
module.exports = {
env: {
es2021: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
],
overrides: [
{
env: {
node: true,
},
files: [".eslintrc.{js,cjs}"],
parserOptions: {
sourceType: "script",
},
},
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["@typescript-eslint", "react"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
},
settings: { react: { version: "detect" } },
};
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: 🐛 Report a bug
description: File a bug report
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thank you for submitting a bug report!
Please be patient, this is a volunteer-driven project. The best way to ensure your bug report is addressed is:
1. Provide as much information as possible.
2. Share a minimal reproduction. Bonus points for linking to a [CodeSandbox](https://codesandbox.io) or similar!
3. Be kind and patient. We all have lives outside of this project.
4. Consider contributing a fix! We will do our best to help you.
- type: input
attributes:
label: In which versions of the package (and relevant enviroment tools such as Node.js) have you observed the bug?
validations:
required: true
- type: textarea
id: description
attributes:
label: What steps will reproduce the bug?
description: Explain the bug and provide a minimal code example that reproduces the problem (or a link to a repo/sandbox).
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: What behavior did you expect?
description: A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: What actually happened?
description: A clear and concise description of what actually happened.
validations:
required: true
- type: textarea
id: workaround
attributes:
label: Workaround
description: If you have a workaround, please share it here.
- type: textarea
id: proposed-fix
attributes:
label: Proposed fix
description: If you have a proposed solution, please share it here.
- type: textarea
id: other-remarks
attributes:
label: Other remarks
description: Any other information you'd like to share that is relevant to the issue being reported.
- type: checkboxes
id: contribute
attributes:
label: Contribution
description: Let us know if you'd like to contribute to the project. If so, we will be happy to help you and your reported issue will likely be prioritized.
options:
- label: I would like to try to contribute a fix
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: 💡 Request a feature
description: Suggest a new feature or enhancement
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thank you for submitting a feature request!
Please be patient, this is a volunteer-driven project. The best way to ensure your feature request is addressed is:
1. Provide detailed information about the use case for the feature.
2. Be kind and patient. We all have lives outside of this project.
3. Consider contributing the feature yourself! We will do our best to help you.
Please note that feature requests are not guaranteed to be implemented. The project's maintainers will decide whether or not to implement a feature request based on its usefulness to the project and its alignment with the project's goals.
Regardless of the outcome, we appreciate your interest in the project!
- type: textarea
id: description
attributes:
label: Description
description: Describe the feature you'd like to see added to the project.
validations:
required: true
- type: textarea
id: workaround
attributes:
label: Workaround / userland implementation
description: If you have a workaround or userland implementation, please share it here.
- type: textarea
id: other-remarks
attributes:
label: Other remarks
description: Any other information you'd like to share that is relevant to the feature request being submitted.
- type: checkboxes
id: contribute
attributes:
label: Contribution
description: Let us know if you'd like to contribute to the project. If so, we will be happy to help you and your feature request will likely be prioritized.
options:
- label: I would like to contribute
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish
on:
push:
branches:
- "main"

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: bun install --frozen-lockfile --ignore-scripts
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
publish: bun run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules/
\*.tsbuildinfo
.eslintcache

.env
.env.development.local
.env.test.local
.env.production.local
.env.local

dist/
.tshy/
.tshy-build-tmp/
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# tailwind-ink
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2023 Dani Guardiola

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.
Loading

0 comments on commit 999ac38

Please sign in to comment.