@outliant/sunrise-utils 2.0.1 → 2.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 +8 -2
- package/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
-
#### [2.0.
|
|
7
|
+
#### [2.0.2](https://github.com/outliant/sunrise-utils/compare/2.0.1...2.0.2)
|
|
8
|
+
|
|
9
|
+
- chore: add common utils [`4d5ebec`](https://github.com/outliant/sunrise-utils/commit/4d5ebec0e4db2eaa7a8abef960e5c3ef68157fab)
|
|
10
|
+
|
|
11
|
+
### [2.0.1](https://github.com/outliant/sunrise-utils/compare/1.4.8...2.0.1)
|
|
12
|
+
|
|
13
|
+
> 11 November 2025
|
|
8
14
|
|
|
9
15
|
- chore: project/task pipeline project field filter updates [`7ec12ff`](https://github.com/outliant/sunrise-utils/commit/7ec12ffc786912f20df034c2d71becfebbd313fc)
|
|
10
16
|
- updated readme [`ec2d6ac`](https://github.com/outliant/sunrise-utils/commit/ec2d6acaf51d2d0ad63a276cedb633b4c1fd785c)
|
|
11
|
-
- chore:
|
|
17
|
+
- chore(release): 2.0.1 [`3f98d22`](https://github.com/outliant/sunrise-utils/commit/3f98d22963432535a4d208f9d14c641fb731ea61)
|
|
12
18
|
|
|
13
19
|
#### [1.4.8](https://github.com/outliant/sunrise-utils/compare/1.4.7...1.4.8)
|
|
14
20
|
|
package/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const log = require('./lib/logger');
|
|
2
|
+
const common = require('./lib/common');
|
|
2
3
|
const fieldConditions = require('./lib/fieldConditions');
|
|
3
4
|
const taskPipeline = require('./lib/taskPipeline');
|
|
4
5
|
const projectPipeline = require('./lib/projectPipeline');
|
|
@@ -7,6 +8,7 @@ const queries = require('./lib/queries');
|
|
|
7
8
|
const EventService = require('./lib/eventService');
|
|
8
9
|
|
|
9
10
|
module.exports = {
|
|
11
|
+
common,
|
|
10
12
|
log,
|
|
11
13
|
fieldConditions,
|
|
12
14
|
taskPipeline,
|