@ellipticltd/aml-utils 0.15.5 → 0.15.7
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/.circleci/config.yml +6 -1
- package/.nyc_output/c9b6c4ce-fddf-403b-aa2e-aac05145213c.json +1 -0
- package/.nyc_output/d9967655-96b8-471a-9686-a4585437f85a.json +1 -0
- package/.nyc_output/processinfo/6b68ea83-db7a-45cb-b572-16338a5cea4b.json +1 -0
- package/.nyc_output/processinfo/a74c6648-3619-4b08-bc8c-ac8cb4959f43.json +1 -0
- package/.nyc_output/processinfo/{f8c694f5-2b17-4e37-9079-32079e715296.json → c9b6c4ce-fddf-403b-aa2e-aac05145213c.json} +1 -1
- package/.nyc_output/processinfo/{43e358d0-76a0-402c-b32e-26a347513bb4.json → d9967655-96b8-471a-9686-a4585437f85a.json} +1 -1
- package/.nyc_output/processinfo/index.json +1 -1
- package/.snyk +12 -0
- package/coverage/errors/errors.js.html +1 -1
- package/coverage/errors/errors.spec.js.html +1 -1
- package/coverage/errors/index.html +1 -1
- package/coverage/file-parser/__tests/file-parser.spec.js.html +1 -1
- package/coverage/file-parser/__tests/index.html +1 -1
- package/coverage/file-parser/__tests/parse-row.spec.js.html +1 -1
- package/coverage/file-parser/__tests/sanitize-rows.spec.js.html +1 -1
- package/coverage/formatting/formatting.js.html +1 -1
- package/coverage/formatting/formatting.spec.js.html +1 -1
- package/coverage/formatting/index.html +1 -1
- package/coverage/index.html +18 -18
- package/coverage/middleware/index.html +1 -1
- package/coverage/middleware/middleware.js.html +1 -1
- package/coverage/orm-helpers/index.html +1 -1
- package/coverage/orm-helpers/ormHelpers.js.html +1 -1
- package/coverage/orm-helpers/ormHelpers.spec.js.html +1 -1
- package/coverage/types/index.html +1 -1
- package/coverage/types/types.js.html +1 -1
- package/coverage/validations/index.html +24 -24
- package/coverage/validations/validations.js.html +136 -16
- package/coverage/validations/validations.spec.js.html +271 -7
- package/dist/validations/validations.d.ts +6 -0
- package/dist/validations/validations.js +8 -0
- package/dist/validations/validations.spec.js +12 -0
- package/lib/validations/validations.js +8 -0
- package/lib/validations/validations.spec.js +14 -0
- package/package.json +11 -7
- package/.nyc_output/43e358d0-76a0-402c-b32e-26a347513bb4.json +0 -1
- package/.nyc_output/f8c694f5-2b17-4e37-9079-32079e715296.json +0 -1
- package/.nyc_output/processinfo/14c71e42-4ce7-487c-be9f-95228038c7ec.json +0 -1
- package/.nyc_output/processinfo/470a2eff-bd46-45ef-bfd6-70c01fe4c9b3.json +0 -1
- /package/.nyc_output/{14c71e42-4ce7-487c-be9f-95228038c7ec.json → 6b68ea83-db7a-45cb-b572-16338a5cea4b.json} +0 -0
- /package/.nyc_output/{470a2eff-bd46-45ef-bfd6-70c01fe4c9b3.json → a74c6648-3619-4b08-bc8c-ac8cb4959f43.json} +0 -0
package/.circleci/config.yml
CHANGED
|
@@ -63,13 +63,16 @@ workflows:
|
|
|
63
63
|
version: 2.1
|
|
64
64
|
build-test-deploy:
|
|
65
65
|
jobs:
|
|
66
|
-
- install
|
|
66
|
+
- install:
|
|
67
|
+
context: npm
|
|
67
68
|
|
|
68
69
|
- unit_test:
|
|
70
|
+
context: npm
|
|
69
71
|
requires:
|
|
70
72
|
- install
|
|
71
73
|
|
|
72
74
|
- lint:
|
|
75
|
+
context: npm
|
|
73
76
|
requires:
|
|
74
77
|
- install
|
|
75
78
|
|
|
@@ -80,3 +83,5 @@ workflows:
|
|
|
80
83
|
- unit_test
|
|
81
84
|
|
|
82
85
|
|
|
86
|
+
|
|
87
|
+
# VS Code Extension Version: 1.5.1
|