Skip to content

Commit 55c5045

Browse files
committed
feat: introduce mansory-grid library
0 parents  commit 55c5045

Some content is hidden

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

41 files changed

+8308
-0
lines changed

.clean-publish

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"withoutPublish": true,
3+
"tempDir": "package",
4+
"fields": ["scripts", "publishConfig"]
5+
}

.commitlintrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"],
3+
"rules": {
4+
"body-max-line-length": [0]
5+
}
6+
}

.czrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"path": "@commitlint/cz-commitlint"
3+
}

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: dangreen
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "🐛 Bug Report"
2+
description: "If something isn't working as expected."
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
9+
10+
- type: markdown
11+
attributes:
12+
value: ⚠️ react-chartjs-2 is just the wrapper around Chart.js, so if you are experiencing an issue with charts rendering, please create a related issue in [Chart.js repository](https://github.com/chartjs/Chart.js/issues).
13+
14+
- type: checkboxes
15+
id: input1
16+
attributes:
17+
label: Would you like to work on a fix?
18+
options:
19+
- label: Check this if you would like to implement a PR, we are more than happy to help you go through the process.
20+
21+
- type: textarea
22+
attributes:
23+
label: Current and expected behavior
24+
description: A clear and concise description of what the library is doing and what you would expect.
25+
validations:
26+
required: true
27+
28+
- type: input
29+
attributes:
30+
label: Reproduction
31+
description: |
32+
Please provide issue reproduction.
33+
You can give a link to a repository with the reproduction or make a [sandbox](https://codesandbox.io/) and reproduce the issue there.
34+
validations:
35+
required: true
36+
37+
- type: input
38+
attributes:
39+
label: Package version
40+
description: Which version of a package are you using?
41+
placeholder: v0.0.0
42+
validations:
43+
required: true
44+
45+
- type: textarea
46+
attributes:
47+
label: Possible solution
48+
description: If you have suggestions on a fix for the bug.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "🚀 Feature Request"
2+
description: "I have a specific suggestion!"
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thanks for taking the time to suggest a new feature! Please fill out this form as completely as possible.
8+
9+
- type: checkboxes
10+
id: input1
11+
attributes:
12+
label: Would you like to work on this feature?
13+
options:
14+
- label: Check this if you would like to implement a PR, we are more than happy to help you go through the process.
15+
16+
- type: textarea
17+
attributes:
18+
label: What problem are you trying to solve?
19+
description: |
20+
A concise description of what the problem is.
21+
placeholder: |
22+
I have an issue when [...]
23+
validations:
24+
required: true
25+
26+
- type: textarea
27+
attributes:
28+
label: Describe the solution you'd like
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
attributes:
34+
label: Describe alternatives you've considered
35+
36+
- type: textarea
37+
attributes:
38+
label: Documentation, Adoption, Migration Strategy
39+
description: |
40+
If you can, explain how users will be able to use this and how it might be documented. Maybe a mock-up?

.github/renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
":preserveSemverRanges"
5+
]
6+
}

.github/workflows/checks.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Checks
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
jobs:
7+
size:
8+
runs-on: ubuntu-latest
9+
name: size-limit
10+
steps:
11+
- name: Checkout the repository
12+
uses: actions/checkout@v4
13+
- name: Install pnpm
14+
uses: pnpm/action-setup@v2
15+
with:
16+
version: 10
17+
- name: Install Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 22
21+
cache: 'pnpm'
22+
- name: Check size
23+
uses: andresz1/size-limit-action@master
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
package_manager: pnpm
27+
editorconfig:
28+
runs-on: ubuntu-latest
29+
name: editorconfig
30+
steps:
31+
- name: Checkout the repository
32+
uses: actions/checkout@v4
33+
- name: Check editorconfig
34+
uses: editorconfig-checker/action-editorconfig-checker@main
35+
package-json:
36+
runs-on: ubuntu-latest
37+
name: package.json
38+
steps:
39+
- name: Checkout the repository
40+
uses: actions/checkout@v4
41+
- name: Install pnpm
42+
uses: pnpm/action-setup@v2
43+
with:
44+
version: 10
45+
- name: Install Node.js
46+
uses: actions/setup-node@v4
47+
with:
48+
node-version: 22
49+
cache: 'pnpm'
50+
- name: Check package.json files
51+
run: pnpm --package=@trigen/lint-package-json dlx lint-package-json --ignore examples

0 commit comments

Comments
 (0)