onroute-policy-engine 0.7.0 → 0.8.0

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.
@@ -39,7 +39,9 @@ jobs:
39
39
  node-version: '20.x'
40
40
  registry-url: 'https://registry.npmjs.org'
41
41
 
42
- - run: npm ci
42
+ - run: npm ci
43
+ - run: npm install genversion
44
+ - run: npx genversion -e src/version.ts
43
45
  - run: tsc
44
46
  - run: npm test
45
47
 
@@ -0,0 +1 @@
1
+ export declare const version = "v0.8.0";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.version = void 0;
4
+ // Generated by genversion.
5
+ exports.version = 'v0.8.0';
package/package.json CHANGED
@@ -52,6 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "dayjs": "^1.11.10",
55
+ "genversion": "^3.2.0",
55
56
  "json-rules-engine": "^6.5.0"
56
57
  },
57
58
  "jest": {
@@ -86,5 +87,5 @@
86
87
  ],
87
88
  "testEnvironment": "node"
88
89
  },
89
- "version": "v0.7.0"
90
+ "version": "v0.8.0"
90
91
  }