@safeticsinc/dra 0.0.1 → 0.0.2
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/dist/index.esm.d.ts +1 -0
- package/dist/index.esm.d.ts.map +1 -0
- package/dist/index.esm.js +3 -0
- package/dist/index.esm.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.esm.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.d.ts","sourceRoot":"","sources":["../src/schema/robot.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sourceRoot":"","sources":["../src/schema/robot.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@safeticsinc/dra",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "digital risk assessment system algorithm and formula",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "npm run build:esm && npm run build:cjs && npm run build:cli",
|
|
24
|
-
"build:esm": "tsc --project tsconfig.json",
|
|
24
|
+
"build:esm": "tsc --project tsconfig.json --outDir dist && node -e \"require('fs').renameSync('dist/index.js', 'dist/index.esm.js')\"",
|
|
25
25
|
"build:cjs": "tsc --project tsconfig.cjs.json --outDir dist && node -e \"require('fs').renameSync('dist/index.js', 'dist/index.cjs')\"",
|
|
26
26
|
"build:cli": "tsc --project tsconfig.cli.json",
|
|
27
27
|
"type-check": "tsc --noEmit",
|