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

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 +12 -8
  2. package/package.json +7 -5
package/CHANGELOG.md CHANGED
@@ -1,17 +1,21 @@
1
1
  # @osdk/generator-utils
2
2
 
3
- ## 2.0.10
3
+ ## 2.1.0-beta.10
4
4
 
5
- ## 2.0.9
5
+ ## 2.1.0-beta.9
6
6
 
7
- ## 2.0.8
7
+ ## 2.1.0-beta.8
8
8
 
9
- ### Patch Changes
9
+ ## 2.1.0-beta.7
10
10
 
11
- - a83ab34: Introduces generator utils
11
+ ## 2.1.0-beta.6
12
12
 
13
- ## 2.0.8-rc.4
13
+ ### Minor Changes
14
14
 
15
- ### Patch Changes
15
+ - 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
16
16
 
17
- - a83ab34: Introduces generator utils
17
+ ## 2.1.0-beta.5
18
+
19
+ ### Minor Changes
20
+
21
+ - 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.10",
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": {
@@ -26,8 +28,8 @@
26
28
  "tmp": "^0.2.3",
27
29
  "typescript": "~5.5.4",
28
30
  "@osdk/monorepo.api-extractor": "~0.0.0",
29
- "@osdk/monorepo.tsconfig": "~0.0.0",
30
- "@osdk/monorepo.tsup": "~0.0.0"
31
+ "@osdk/monorepo.tsup": "~0.0.0",
32
+ "@osdk/monorepo.tsconfig": "~0.0.0"
31
33
  },
32
34
  "publishConfig": {
33
35
  "access": "public"