Skip to content

Commit

Permalink
autmoate versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
porkchop committed Feb 6, 2024
1 parent 128bd68 commit 60514d2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist-web/waxjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"name": "@waxio/waxjs",
"version": "1.7.0",
"version": "1.7.1",
"description": "Javascript API for integration with the WAX Cloud Wallet.",
"scripts": {
"build": "tsc",
"build-web": "webpack --config webpack.prod.js",
"build": "npm run genversion && tsc",
"build-web": "npm run genversion && webpack --config webpack.prod.js",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"test/**/*.ts\" \"test/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "npm run lint && mocha -r ts-node/register test/**/*.test.ts",
"docs": "typedoc --excludePrivate --exclude src/waxEventSource.ts --out docs src",
"docs:serve": "serve -s docs",
"serve": "serve -s dist-web",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npx genversion --es6 src/version.ts",
"prepublishOnly": "npm run lint && npm run build && npm run build-web",
"preversion": "npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
"postversion": "git push && git push --tags",
"genversion": "genversion src/version.ts -e"
},
"author": "WAX",
"homepage": "https://github.com/worldwide-asset-exchange/waxjs#readme",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = '1.6.1'
export const version = '1.7.1'

0 comments on commit 60514d2

Please sign in to comment.