Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export datatable props #58

Merged
merged 21 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
"prettier",
"simple-import-sort"
],
"rules": {}
"rules": { "@typescript-eslint/ban-ts-comment": "off" }
}
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
# - run: npm test
- run: npm test
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
node-version: 18
- run: npm install
# - run: npm test
- run: npm test

publish:
name: Publish package to npmjs
Expand All @@ -46,9 +46,9 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: git config --global user.email "ross@bsoltec.com"
- run: git config --global user.name "Ross Chiu"
- run: npm install
- run: npm ci
- run: npm version patch
- run: npm run build
- run: npm version patch --no-git-tag-version
- run: npm publish . && git push --tags && git push && echo \"Successfully released version $npm_package_version!\"
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
Expand Down
Loading