Skip to content

Commit c6b43f6

Browse files
committed
chore: upgrade version to 'v3.2.0'
2 parents bf2099c + 995dcf8 commit c6b43f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+14058
-19411
lines changed

.editorconfig

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,10 @@ end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10+
11+
[*.{yml,yaml}]
1012
indent_style = space
11-
indent_size = 2
13+
indent_size = 4
14+
15+
[*.{js,ts,json}]
16+
indent_style = tab

.eslintignore

-6
This file was deleted.

.eslintrc.js

-50
This file was deleted.
+6-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
name: Bug report
33
about: Something is not working correctly.
4-
labels: 'bug'
4+
labels: "bug"
55
---
66

77
## Environment:
88

9-
- `TailwindCSS` version:
10-
- `tailwindcss-classnames` version:
11-
- `Node.js` version:
9+
- `TailwindCSS` version:
10+
- `tailwindcss-classnames` version:
11+
- `Node.js` version:
1212

1313
## Current Behavior
1414

@@ -22,5 +22,5 @@ labels: 'bug'
2222

2323
## Additional Questions
2424

25-
- [ ] I've searched the issues list and this is not a duplicate
26-
- [ ] I'm willing to fix this error <!-- Not obligatory -->
25+
- [ ] I've searched the issues list and this is not a duplicate
26+
- [ ] I'm willing to fix this error <!-- Not obligatory -->
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest a feature or an improvement to the project.
4-
labels: 'enhancement'
4+
labels: "enhancement"
55
---
66

77
# Summary
88

9-
- [ ] I'm willing to implement this feature <!-- not obligatory -->
9+
- [ ] I'm willing to implement this feature <!-- not obligatory -->

.github/dependabot.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: weekly
7-
open-pull-requests-limit: 5
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 5

.github/semantic.yaml

-10
This file was deleted.

.github/workflows/lint.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ name: Lint
22
on: [push, pull_request]
33

44
jobs:
5-
lint:
6-
runs-on: ubuntu-latest
7-
steps:
8-
- uses: actions/checkout@v2
9-
with:
10-
fetch-depth: 0
11-
- uses: actions/setup-node@v1
12-
with:
13-
node-version: '14.x'
14-
- run: yarn install
15-
- name: lint
16-
run: yarn run lint
5+
lint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
with:
10+
fetch-depth: 0
11+
- uses: oven-sh/setup-bun@v2
12+
13+
- run: bun install
14+
- name: lint
15+
run: bun run lint

.github/workflows/semantic.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Semantic PR"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- reopened
9+
10+
jobs:
11+
main:
12+
name: Validate PR title
13+
runs-on: ubuntu-latest
14+
permissions:
15+
pull-requests: read
16+
steps:
17+
- uses: amannn/action-semantic-pull-request@v5
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ typings/
103103

104104
# End of https://www.gitignore.io/api/node,visualstudiocode,macos
105105

106-
# npm lock file
107-
package-lock.json
106+
# yarn lock file
107+
yarn.lock
108108

109109
# project specific
110110
tailwind.config.js

.husky/commit-msg

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
commitlint --edit $1

.husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lint-staged

.huskyrc.json

-6
This file was deleted.

.prettierrc

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"singleQuote": true,
2+
"singleQuote": false,
33
"arrowParens": "avoid",
44
"endOfLine": "lf",
55
"quoteProps": "as-needed",
66
"semi": true,
7-
"useTabs": false,
8-
"tabWidth": 2,
7+
"useTabs": true,
8+
"tabWidth": 4,
99
"trailingComma": "all",
10-
"printWidth": 100,
11-
"bracketSpacing": false
10+
"printWidth": 120,
11+
"bracketSpacing": true
1212
}

0 commit comments

Comments
 (0)