@kumori/aurora-backend-handler 1.1.42 → 1.1.44

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/.gitlab-ci.yml CHANGED
@@ -18,27 +18,27 @@ install:
18
18
  paths:
19
19
  - node_modules/
20
20
 
21
- # test:
22
- # stage: test
23
- # image: node:16-alpine
24
- # tags:
25
- # - docker
26
- # dependencies:
27
- # - install
28
- # script:
29
- # - npm install --no-save jest-junit
30
- # - npm run test
31
- # coverage: '/All files.*?\|\s*[\d\.]+\s*\|\s*[\d\.]+\s*\|\s*[\d\.]+\s*\|\s*([\d\.]+)/'
32
- # artifacts:
33
- # when: always
34
- # paths:
35
- # - report.xml
36
- # reports:
37
- # junit: report.xml
38
- # only:
39
- # - merge_requests
40
- # - master
41
- # - tags
21
+ test:
22
+ stage: test
23
+ image: node:16-alpine
24
+ tags:
25
+ - docker
26
+ dependencies:
27
+ - install
28
+ script:
29
+ - npm install --no-save jest-junit
30
+ - npm run test
31
+ coverage: '/All files.*?\|\s*[\d\.]+\s*\|\s*[\d\.]+\s*\|\s*[\d\.]+\s*\|\s*([\d\.]+)/'
32
+ artifacts:
33
+ when: always
34
+ paths:
35
+ - report.xml
36
+ reports:
37
+ junit: report.xml
38
+ only:
39
+ - merge_requests
40
+ - master
41
+ - tags
42
42
 
43
43
  release:
44
44
  stage: release
package/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # CHANGELOG 1.0.0 (2026-04-28)
2
+
3
+ ## Added (2 change)
4
+
5
+ * More tests to improve coverage.
6
+ * CHANGELOG.md file to follow the new reposiotry structure.
7
+
8
+ ## Changes (1 change)
9
+
10
+ * Updated the DSL library to ["@kumori/kumori-dsl-generator": "1.0.6"]
package/jest.config.ts CHANGED
@@ -19,6 +19,7 @@ const config: Config.InitialOptions = {
19
19
  moduleNameMapper: {
20
20
  '^(\\.{1,2}/.*)\\.js$': '$1',
21
21
  },
22
+ coverageProvider: 'v8',
22
23
  collectCoverage: true,
23
24
  collectCoverageFrom: [
24
25
  "**/backend-handler.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.1.42",
3
+ "version": "1.1.44",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {