@eliboo/biz-logic 0.0.1

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/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # biz-logic
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build biz-logic` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test biz-logic` to execute the unit tests via [Jest](https://jestjs.io).
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@eliboo/biz-logic",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "./src/index.js",
6
+ "types": "./src/index.d.ts",
7
+ "dependencies": {
8
+ "tslib": "^2.3.0"
9
+ },
10
+ "module": "./src/index.js"
11
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib/biz-logic';
package/src/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './lib/biz-logic';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/biz-logic/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1 @@
1
+ export declare function bizLogic(): string;
@@ -0,0 +1,4 @@
1
+ export function bizLogic() {
2
+ return 'biz-logic';
3
+ }
4
+ //# sourceMappingURL=biz-logic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"biz-logic.js","sourceRoot":"","sources":["../../../../../packages/biz-logic/src/lib/biz-logic.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,QAAQ;IACtB,OAAO,WAAW,CAAC;AACrB,CAAC"}