Skip to content

Commit

Permalink
chore: use vite build system
Browse files Browse the repository at this point in the history
  • Loading branch information
smmoosavi committed Jul 12, 2024
1 parent c00ad56 commit 05fd9bc
Show file tree
Hide file tree
Showing 32 changed files with 8,983 additions and 8,105 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": []
}
3 changes: 3 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
extends:
- react-app
- react-app/jest
13 changes: 7 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
node_modules
/dist/
/lib/
/es/
/bin/
/coverage/
/.cache/
.DS_Store
dist
dist-ssr
*.local
.cache
coverage
/tsdoc-metadata.json
.pnpm-debug.log
5 changes: 1 addition & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged
pnpm run pre-commit
4 changes: 2 additions & 2 deletions .lintstagedrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
'**/*.{js,jsx,ts,tsx,json,css,scss,md}':
- 'libton-script format'
'**/*.{js,jsx,ts,tsx,json,yml,css,scss,md}':
- 'prettier --write'
9 changes: 3 additions & 6 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/dist/
/lib/
/es/
/bin/
/coverage/
/.cache/
dist/
.cache/
coverage/
/tsdoc-metadata.json
2 changes: 2 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trailingComma: 'all'
singleQuote: true
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Featureable, flexible and powerful react table. `ctablex` will not hold you back

- [Install](#install)
- [Usage](#usage)
- [The `Table` component](#the-table-component)
- [The `Columns` component](#the-columns-component)
- [Changelog](#changelog)
- [License](#license)

<!-- tocstop -->

Expand Down
37 changes: 37 additions & 0 deletions api-extractor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",

"mainEntryPointFilePath": "<projectFolder>/.cache/dts/index.d.ts",

"apiReport": {
"enabled": false
},
"docModel": {
"enabled": false
},

"dtsRollup": {
"enabled": true,
"untrimmedFilePath": "<projectFolder>/index.d.ts"
},

"messages": {
"compilerMessageReporting": {
"default": {
"logLevel": "warning"
}
},

"extractorMessageReporting": {
"default": {
"logLevel": "warning"
}
},

"tsdocMessageReporting": {
"default": {
"logLevel": "warning"
}
}
}
}
Loading

0 comments on commit 05fd9bc

Please sign in to comment.