@open-kingdom/shared-poly-util-constants 0.0.2-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.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # util-constants
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test util-constants` to execute the unit tests via [Jest](https://jestjs.io).
@@ -0,0 +1,2 @@
1
+ export * from './lib/util-constants.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const o = "DB";
2
+ export {
3
+ o as DB_TAG
4
+ };
@@ -0,0 +1,2 @@
1
+ export declare const DB_TAG = "DB";
2
+ //# sourceMappingURL=util-constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util-constants.d.ts","sourceRoot":"","sources":["../../src/lib/util-constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,OAAO,CAAC"}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@open-kingdom/shared-poly-util-constants",
3
+ "version": "0.0.2-0",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "development": "./src/index.ts",
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "default": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "!**/*.tsbuildinfo"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "dependencies": {},
25
+ "nx": {
26
+ "name": "@open-kingdom/shared-poly-util-constants",
27
+ "tags": [
28
+ "scope:shared",
29
+ "type:util",
30
+ "environment:poly"
31
+ ]
32
+ }
33
+ }