Skip to content

Commit

Permalink
Release 2.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
oze4 committed Dec 22, 2020
1 parent 30ff300 commit fb576e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
# create_tag: "true" # whether to create a git tag or not (defaults to "true")
commit_pattern: "^Release (\\S+)" # pattern that the commit message needs to follow
workspace: "." # custom workspace directory that contains the package.json file
publish_command: "npm" # custom publish command (defaults to yarn)
#
#
# I COULD ONLY GET THIS TO WORK USING "yarn"
publish_command: "yarn" # custom publish command (defaults to yarn)
# publish_args: "--non-interactive" # publish command arguments (for example --prod --verbose, defaults to empty)

env:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "2.1.16",
"version": "2.1.17",
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand All @@ -15,6 +15,7 @@
"extends": "./configs/.babelrc"
},
"scripts": {
"prepublish": "npm install && npm run build",
"start": "webpack-dev-server --config ./demo/webpack.config.js --mode development",
"build": "babel src --out-dir dist",
"lint": "npm run eslint && npm run tsc",
Expand Down

0 comments on commit fb576e4

Please sign in to comment.