@okf/ootils 1.1.0

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.
@@ -0,0 +1,3 @@
1
+ declare function add(a: number, b: number): number;
2
+
3
+ export { add };
@@ -0,0 +1,3 @@
1
+ declare function add(a: number, b: number): number;
2
+
3
+ export { add };
package/dist/index.js ADDED
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ add: () => add
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+
27
+ // src/utils/testFn.ts
28
+ function add(a, b) {
29
+ return a + b;
30
+ }
31
+ // Annotate the CommonJS export names for ESM import in node:
32
+ 0 && (module.exports = {
33
+ add
34
+ });
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ // src/utils/testFn.ts
2
+ function add(a, b) {
3
+ return a + b;
4
+ }
5
+ export {
6
+ add
7
+ };
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@okf/ootils",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "1.1.0",
7
+ "description": "Utility functions for both browser and Node.js",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.mjs",
10
+ "types": "dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.mjs",
14
+ "require": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "config": {
22
+ "commitizen": {
23
+ "path": "./node_modules/cz-conventional-changelog"
24
+ }
25
+ },
26
+ "scripts": {
27
+ "build": "tsup src/index.ts --format cjs,esm --dts",
28
+ "prepublishOnly": "npm run build",
29
+ "semantic-release": "semantic-release"
30
+ },
31
+ "devDependencies": {
32
+ "@semantic-release/changelog": "^6.0.3",
33
+ "@semantic-release/commit-analyzer": "^13.0.1",
34
+ "@semantic-release/github": "^11.0.1",
35
+ "@semantic-release/npm": "^12.0.1",
36
+ "@semantic-release/release-notes-generator": "^14.0.3",
37
+ "@types/node": "^22.13.10",
38
+ "commitizen": "^4.3.1",
39
+ "cz-conventional-changelog": "^3.3.0",
40
+ "semantic-release": "^24.2.3",
41
+ "tsup": "^8.4.0",
42
+ "typescript": "^5.8.2"
43
+ }
44
+ }