simple-ts-sum 1.0.0 → 1.0.2

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.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ exports.sum = sum;
4
4
  function sum(a, b) {
5
5
  return a + b;
6
6
  }
7
- // test commit4
7
+ // test commit8
8
8
  const result = sum(3, 5);
9
9
  console.log("Result:", result);
10
10
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-ts-sum",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "TypeScript package with sum function for CI/CD demo",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",