Comparing version 3.0.0 to 4.0.0
# npm-calc/add | ||
## 4.0.0 | ||
### Major Changes | ||
- tsdtxtd | ||
## 3.0.0 | ||
@@ -4,0 +10,0 @@ |
@@ -1,1 +0,30 @@ | ||
"use strict";var d=Object.defineProperty;var o=Object.getOwnPropertyDescriptor;var t=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var a=(n,e)=>{for(var b in e)d(n,b,{get:e[b],enumerable:!0})},c=(n,e,b,m)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of t(e))!u.call(n,r)&&r!==b&&d(n,r,{get:()=>e[r],enumerable:!(m=o(e,r))||m.enumerable});return n};var p=n=>c(d({},"__esModule",{value:!0}),n);var x={};a(x,{add:()=>s});module.exports=p(x);var s=(n,e)=>n+e;0&&(module.exports={add}); | ||
"use strict"; | ||
var __defProp = Object.defineProperty; | ||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | ||
var __getOwnPropNames = Object.getOwnPropertyNames; | ||
var __hasOwnProp = Object.prototype.hasOwnProperty; | ||
var __export = (target, all) => { | ||
for (var name in all) | ||
__defProp(target, name, { get: all[name], enumerable: true }); | ||
}; | ||
var __copyProps = (to, from, except, desc) => { | ||
if (from && typeof from === "object" || typeof from === "function") { | ||
for (let key of __getOwnPropNames(from)) | ||
if (!__hasOwnProp.call(to, key) && key !== except) | ||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | ||
} | ||
return to; | ||
}; | ||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); | ||
// src/index.ts | ||
var src_exports = {}; | ||
__export(src_exports, { | ||
add: () => add | ||
}); | ||
module.exports = __toCommonJS(src_exports); | ||
var add = (a, b) => a + b; | ||
// Annotate the CommonJS export names for ESM import in node: | ||
0 && (module.exports = { | ||
add | ||
}); |
{ | ||
"name": "turbo-calc", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"main": "./dist/index.js", | ||
@@ -16,3 +16,3 @@ "module": "./dist/index.mjs", | ||
"start": "node dist/index.js", | ||
"build": "tsup src/index.ts src/cli.ts --minify --format cjs,esm --dts", | ||
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts", | ||
"dev": "npm run build -- --watch", | ||
@@ -19,0 +19,0 @@ "lint": "eslint . --max-warnings 0", |
@@ -9,3 +9,4 @@ { | ||
} | ||
} | ||
}, | ||
"files": ["dist/"] | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3541
61