@qrwise/pos-calculations 0.0.1 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.cjs +1 -0
  2. package/package.json +6 -3
package/dist/index.cjs CHANGED
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __defProp = Object.defineProperty;
2
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrwise/pos-calculations",
3
- "version": "0.0.1",
3
+ "version": "0.0.5",
4
4
  "description": "Shared POS calculations for QR Wise POS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -18,8 +18,11 @@
18
18
  }
19
19
  },
20
20
  "scripts": {
21
- "build": "tsup src/index.ts --format esm,cjs --dts --clean",
22
- "prepublishOnly": "npm run build"
21
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean --tsconfig tsconfig.json",
22
+ "prepublishOnly": "npm run build",
23
+ "release:patch": "npm version patch && npm publish",
24
+ "release:minor": "npm version minor && npm publish",
25
+ "release:major": "npm version major && npm publish"
23
26
  },
24
27
  "publishConfig": {
25
28
  "access": "public"