@clipboard-health/rules-engine 0.1.6 → 1.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/CHANGELOG.md +20 -0
- package/package.json +5 -5
- package/src/lib/append-output.js +1 -2
- package/src/lib/append-output.js.map +1 -1
- package/src/lib/runners/all.js +1 -2
- package/src/lib/runners/all.js.map +1 -1
- package/src/lib/runners/first-match.js +1 -2
- package/src/lib/runners/first-match.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.0.2](https://github.com/ClipboardHealth/cbh-core/compare/rules-engine-1.0.1...rules-engine-1.0.2) (2024-07-18)
|
|
6
|
+
|
|
7
|
+
## [1.0.1](https://github.com/ClipboardHealth/cbh-core/compare/rules-engine-1.0.0...rules-engine-1.0.1) (2024-07-18)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* add build postTarget ([#692](https://github.com/ClipboardHealth/cbh-core/issues/692)) ([3b42efb](https://github.com/ClipboardHealth/cbh-core/commit/3b42efb603572c7a273c8eedd554773c6a364acf))
|
|
13
|
+
|
|
14
|
+
## [1.0.0](https://github.com/ClipboardHealth/cbh-core/compare/rules-engine-0.1.6...rules-engine-1.0.0) (2024-07-18)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### ⚠ BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* upgrade Nx to v18 (#690)
|
|
20
|
+
|
|
21
|
+
### Code Refactoring
|
|
22
|
+
|
|
23
|
+
* upgrade Nx to v18 ([#690](https://github.com/ClipboardHealth/cbh-core/issues/690)) ([e6dd982](https://github.com/ClipboardHealth/cbh-core/commit/e6dd982db39022a72dfbf888f707768bae834ccb))
|
|
24
|
+
|
|
5
25
|
## [0.1.6](https://github.com/ClipboardHealth/cbh-core/compare/rules-engine-0.1.5...rules-engine-0.1.6) (2024-07-12)
|
|
6
26
|
|
|
7
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clipboard-health/rules-engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"dependencies": {
|
|
5
|
+
"type-fest": "4.21.0"
|
|
6
|
+
},
|
|
4
7
|
"main": "./src/index.js",
|
|
5
8
|
"scripts": {
|
|
6
9
|
"build": "nx build rules-engine",
|
|
@@ -8,8 +11,5 @@
|
|
|
8
11
|
"lint": "nx lint rules-engine",
|
|
9
12
|
"test": "nx test rules-engine"
|
|
10
13
|
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"type-fest": "4.21.0"
|
|
13
|
-
},
|
|
14
14
|
"type": "commonjs"
|
|
15
|
-
}
|
|
15
|
+
}
|
package/src/lib/append-output.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.appendOutput =
|
|
3
|
+
exports.appendOutput = appendOutput;
|
|
4
4
|
/**
|
|
5
5
|
* Rule output is immutable, do not modify existing items, only append using this function.
|
|
6
6
|
*/
|
|
@@ -10,5 +10,4 @@ function appendOutput(context, output) {
|
|
|
10
10
|
output: [...context.output, output],
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
-
exports.appendOutput = appendOutput;
|
|
14
13
|
//# sourceMappingURL=append-output.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"append-output.js","sourceRoot":"","sources":["../../../../../packages/rules-engine/src/lib/append-output.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"append-output.js","sourceRoot":"","sources":["../../../../../packages/rules-engine/src/lib/append-output.ts"],"names":[],"mappings":";;AAOA,oCAQC;AAXD;;GAEG;AACH,SAAgB,YAAY,CAC1B,OAAqC,EACrC,MAA6B;IAE7B,OAAO;QACL,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC;KACpC,CAAC;AACJ,CAAC"}
|
package/src/lib/runners/all.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.all =
|
|
3
|
+
exports.all = all;
|
|
4
4
|
/**
|
|
5
5
|
* Runs all rules that return true for `runIf`.
|
|
6
6
|
*
|
|
@@ -14,5 +14,4 @@ function all(...rules) {
|
|
|
14
14
|
.reduce((previousContext, rule) => rule.run(previousContext), context),
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
exports.all = all;
|
|
18
17
|
//# sourceMappingURL=all.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../../../../../packages/rules-engine/src/lib/runners/all.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../../../../../packages/rules-engine/src/lib/runners/all.ts"],"names":[],"mappings":";;AAOA,kBAUC;AAfD;;;;GAIG;AACH,SAAgB,GAAG,CACjB,GAAG,KAA6C;IAEhD,OAAO;QACL,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QACzD,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,CACf,KAAK;aACF,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;aAC3C,MAAM,CAAC,CAAC,eAAe,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC;KAC3E,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.firstMatch =
|
|
3
|
+
exports.firstMatch = firstMatch;
|
|
4
4
|
/**
|
|
5
5
|
* Run the first rule that returns true for `runIf`.
|
|
6
6
|
*
|
|
@@ -15,5 +15,4 @@ function firstMatch(...rules) {
|
|
|
15
15
|
},
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
-
exports.firstMatch = firstMatch;
|
|
19
18
|
//# sourceMappingURL=first-match.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"first-match.js","sourceRoot":"","sources":["../../../../../../packages/rules-engine/src/lib/runners/first-match.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"first-match.js","sourceRoot":"","sources":["../../../../../../packages/rules-engine/src/lib/runners/first-match.ts"],"names":[],"mappings":";;AAOA,gCAUC;AAfD;;;;GAIG;AACH,SAAgB,UAAU,CACxB,GAAG,KAA6C;IAEhD,OAAO;QACL,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QACzD,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE;YACf,MAAM,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;YAC7D,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;QAC5C,CAAC;KACF,CAAC;AACJ,CAAC"}
|