@osdk/generator-utils 2.0.9 → 2.1.0-beta.6
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.
- package/CHANGELOG.md +6 -8
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
# @osdk/generator-utils
|
|
2
2
|
|
|
3
|
-
## 2.0.
|
|
3
|
+
## 2.1.0-beta.6
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### Minor Changes
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
|
|
8
8
|
|
|
9
|
-
-
|
|
9
|
+
## 2.1.0-beta.5
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Minor Changes
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
- a83ab34: Introduces generator utils
|
|
13
|
+
- 0beaf9d: Introduces generator utils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/generator-utils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.1.0-beta.6",
|
|
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.
|
|
30
|
-
"@osdk/monorepo.
|
|
31
|
+
"@osdk/monorepo.tsup": "~0.0.0",
|
|
32
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
31
33
|
},
|
|
32
34
|
"publishConfig": {
|
|
33
35
|
"access": "public"
|