Skip to content

Commit 097ea87

Browse files
committed
refactor: hello v1
1 parent 03694d0 commit 097ea87

38 files changed

+3783
-222
lines changed

β€Ž.changeset/README.mdβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

β€Ž.changeset/config.jsonβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"access": "public",
4+
"baseBranch": "main",
5+
"changelog": "@changesets/cli/changelog",
6+
"commit": false,
7+
"fixed": [],
8+
"ignore": [],
9+
"linked": [],
10+
"updateInternalDependencies": "patch"
11+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: grikomsn
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: grikomsn
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!-- markdownlint-disable MD014 MD033 MD034 MD036 MD041 -->
2+
3+
## Description
4+
5+
This PR ...
6+
7+
## Checklist
8+
9+
- [ ] I have made sure the upstream branch for this PR is correct
10+
- [ ] I have made sure this PR is ready to merge
11+
- [ ] I have made sure that I have assigned reviewers related to this project
12+
13+
## Changes
14+
15+
- [ ] Added ...
16+
- [ ] Changed ...
17+
- [ ] Removed ...
18+
19+
## Screenshots
20+
21+
...
22+
23+
## Testing
24+
25+
- Open page ...
26+
- Click ...
27+
- Make sure that ...
28+
29+
## Links/References
30+
31+
- ...
32+
- ...
33+
- ...
34+
35+
## Notes
36+
37+
- ...
38+
- ...
39+
- ...
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Changesets
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
concurrency: ${{ github.workflow }}-${{ github.ref }}
9+
10+
permissions:
11+
actions: write
12+
contents: write
13+
id-token: write
14+
pull-requests: write
15+
16+
jobs:
17+
version:
18+
if: github.repository == 'kodingdotninja/use-tailwind-breakpoint'
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: checkout
22+
uses: actions/checkout@v4
23+
24+
- name: setup node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
cache: pnpm
28+
node-version-file: .nvmrc
29+
30+
- name: install dependencies
31+
run: pnpm install --frozen-lockfile
32+
33+
- name: create release pr or publish to npm
34+
id: changesets
35+
uses: changesets/action@v1
36+
with:
37+
commit: "feat: version packages"
38+
title: "feat: version packages"
39+
publish: pnpm run release
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

β€Ž.gitignoreβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.pnp.*
77
.yarn/*
88
dist/
9+
dist-ssr/
910
package-lock.json
1011
yarn.lock
1112

β€Ž.husky/post-mergeβ€Ž

Lines changed: 0 additions & 4 deletions
This file was deleted.

β€Ž.husky/pre-commitβ€Ž

Lines changed: 0 additions & 4 deletions
This file was deleted.

β€Ž.npmrcβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public-hoist-pattern[]=*

0 commit comments

Comments
Β (0)