Skip to content

Commit

Permalink
Merge pull request #58 from bsol-oss/export_datatable_props
Browse files Browse the repository at this point in the history
Export datatable props
  • Loading branch information
jyotipadhi1 committed Nov 27, 2023
2 parents 0c82525 + e112682 commit cfc8574
Show file tree
Hide file tree
Showing 26 changed files with 805 additions and 248 deletions.
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

0 comments on commit cfc8574

Please sign in to comment.