@nexim/financial-calculate 1.0.4 → 1.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.5](https://github.com/the-nexim/nanolib/compare/@nexim/financial-calculate@1.0.4...@nexim/financial-calculate@1.0.5) (2025-08-30)
7
+
8
+ **Note:** Version bump only for package @nexim/financial-calculate
9
+
6
10
  ## [1.0.4](https://github.com/the-nexim/nanolib/compare/@nexim/financial-calculate@1.0.3...@nexim/financial-calculate@1.0.4) (2025-08-19)
7
11
 
8
12
  **Note:** Version bump only for package @nexim/financial-calculate
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @nexim/financial-calculate v1.0.4 */
1
+ /* @nexim/financial-calculate v1.0.5 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -28,7 +28,7 @@ __export(main_exports, {
28
28
  });
29
29
  module.exports = __toCommonJS(main_exports);
30
30
  var import_package_tracer = require("@alwatr/package-tracer");
31
- __dev_mode__: import_package_tracer.packageTracer.add("@nexim/financial-calculate", "1.0.4");
31
+ __dev_mode__: import_package_tracer.packageTracer.add("@nexim/financial-calculate", "1.0.5");
32
32
  function calculateDiscountedPrice(price, discount, decimal = 2) {
33
33
  const discountedPrice = price * (1 - discount / 100);
34
34
  return parseFloat(discountedPrice.toFixed(decimal));
package/dist/main.mjs CHANGED
@@ -1,8 +1,8 @@
1
- /* @nexim/financial-calculate v1.0.4 */
1
+ /* @nexim/financial-calculate v1.0.5 */
2
2
 
3
3
  // src/main.ts
4
4
  import { packageTracer } from "@alwatr/package-tracer";
5
- __dev_mode__: packageTracer.add("@nexim/financial-calculate", "1.0.4");
5
+ __dev_mode__: packageTracer.add("@nexim/financial-calculate", "1.0.5");
6
6
  function calculateDiscountedPrice(price, discount, decimal = 2) {
7
7
  const discountedPrice = price * (1 - discount / 100);
8
8
  return parseFloat(discountedPrice.toFixed(decimal));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexim/financial-calculate",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Provides a set of utils to handle common financial operations.",
5
5
  "keywords": [
6
6
  "financial",
@@ -45,14 +45,14 @@
45
45
  "watch": "wireit"
46
46
  },
47
47
  "dependencies": {
48
- "@alwatr/package-tracer": "^5.5.3"
48
+ "@alwatr/package-tracer": "^5.5.6"
49
49
  },
50
50
  "devDependencies": {
51
- "@alwatr/nano-build": "^5.5.3",
52
- "@alwatr/type-helper": "^5.4.1",
51
+ "@alwatr/nano-build": "^6.0.1",
52
+ "@alwatr/type-helper": "^5.4.4",
53
53
  "@nexim/typescript-config": "^2.0.1",
54
54
  "ava": "^6.4.1",
55
- "typedoc": "^0.28.10",
55
+ "typedoc": "^0.28.11",
56
56
  "typedoc-plugin-markdown": "^4.8.1",
57
57
  "typedoc-plugin-no-inherit": "^1.6.1",
58
58
  "typescript": "^5.9.2",
@@ -108,5 +108,5 @@
108
108
  "command": "typedoc"
109
109
  }
110
110
  },
111
- "gitHead": "e67fe3938015270ff3bb71c5d76334faebc4c142"
111
+ "gitHead": "e9784c58e523a33fc5dc6959559ba60cbdd55ab1"
112
112
  }