@forge/resolver 1.7.0-next.1 → 1.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @forge/resolver
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1a5bad3: Typed interface for invoking resolvers
8
+
9
+ ### Patch Changes
10
+
11
+ - f19343f: Fix exports
12
+
13
+ ## 1.7.0-next.2
14
+
15
+ ### Patch Changes
16
+
17
+ - f19343f: Fix exports
18
+
3
19
  ## 1.7.0-next.1
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@forge/resolver",
3
- "version": "1.7.0-next.1",
3
+ "version": "1.7.0",
4
4
  "description": "Forge function resolver",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
7
7
  "main": "out/index.js",
8
8
  "types": "out/index.d.ts",
9
9
  "exports": {
10
+ ".": {
11
+ "types": "./out/index.d.ts",
12
+ "default": "./out/index.js"
13
+ },
10
14
  "./shared": {
11
15
  "types": "./out/shared/index.d.ts",
12
16
  "default": "./out/shared/index.js"