@osdk/generator-utils 2.0.10 → 2.1.0-beta.11

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 +14 -8
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,17 +1,23 @@
1
1
  # @osdk/generator-utils
2
2
 
3
- ## 2.0.10
3
+ ## 2.1.0-beta.11
4
4
 
5
- ## 2.0.9
5
+ ## 2.1.0-beta.10
6
6
 
7
- ## 2.0.8
7
+ ## 2.1.0-beta.9
8
8
 
9
- ### Patch Changes
9
+ ## 2.1.0-beta.8
10
10
 
11
- - a83ab34: Introduces generator utils
11
+ ## 2.1.0-beta.7
12
12
 
13
- ## 2.0.8-rc.4
13
+ ## 2.1.0-beta.6
14
14
 
15
- ### Patch Changes
15
+ ### Minor Changes
16
16
 
17
- - a83ab34: Introduces generator utils
17
+ - 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
18
+
19
+ ## 2.1.0-beta.5
20
+
21
+ ### Minor Changes
22
+
23
+ - 0beaf9d: Introduces generator utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/generator-utils",
3
- "version": "2.0.10",
3
+ "version": "2.1.0-beta.11",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,11 +9,13 @@
9
9
  "exports": {
10
10
  ".": {
11
11
  "browser": "./build/browser/index.js",
12
- "import": "./build/esm/index.js"
12
+ "import": "./build/esm/index.js",
13
+ "default": "./build/browser/index.js"
13
14
  },
14
15
  "./*": {
15
16
  "browser": "./build/browser/public/*.js",
16
- "import": "./build/esm/public/*.js"
17
+ "import": "./build/esm/public/*.js",
18
+ "default": "./build/browser/public/*.js"
17
19
  }
18
20
  },
19
21
  "dependencies": {