Skip to content

Releases: aryamohanan/square-calc

Release v3.3.1

Choose a tag to compare

@aryamohanan aryamohanan released this 03 Jun 10:20

This release improves developer experience (DX) for projects utilizing Node.js's native require(esm) feature.

🛠 What's New

Seamless CommonJS Interoperability

You can now import the package using standard CommonJS require() without needing to manually destructure or append .default to the function!

Before

const calculateSquare = require('your-package').default;

Now

const calculateSquare = require('your-package');

3.1.0

Choose a tag to compare

@aryamohanan aryamohanan released this 06 Jun 03:10
7426756

ESM version of square-calc

2.4.0

Choose a tag to compare

@aryamohanan aryamohanan released this 06 Jun 03:01
05f2a95

CJS version of square-calc