onroute-policy-engine 0.3.0 → 0.4.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.
@@ -45,3 +45,10 @@ jobs:
45
45
  run: npm publish --provenance --access public
46
46
  env:
47
47
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
48
+
49
+ - name: Create Release
50
+ run: |
51
+ gh release create "${{ steps.semver.outputs.next }}" \
52
+ --repo="${{ github.repository }}" \
53
+ --title="${{ steps.semver.outputs.next }}" \
54
+ --generate-notes
package/package.json CHANGED
@@ -7,6 +7,19 @@
7
7
  "./types": "./dist/types/index.js",
8
8
  "./enum": "./dist/enum/index.js"
9
9
  },
10
+ "typesVersions": {
11
+ "*": {
12
+ ".": [
13
+ "dist/index.d.ts"
14
+ ],
15
+ "types": [
16
+ "dist/types/index.d.ts"
17
+ ],
18
+ "enum": [
19
+ "dist/enum/index.d.ts"
20
+ ]
21
+ }
22
+ },
10
23
  "types": "dist/index.d.ts",
11
24
  "private": false,
12
25
  "scripts": {
@@ -73,5 +86,5 @@
73
86
  ],
74
87
  "testEnvironment": "node"
75
88
  },
76
- "version": "v0.3.0"
89
+ "version": "v0.4.0"
77
90
  }