@osdk/maker 0.8.0-beta.4 → 0.8.0-beta.5
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 +7 -0
- package/build/browser/index.js +1 -1
- package/build/esm/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/build/browser/index.js
CHANGED
|
@@ -197,7 +197,7 @@ function isSimpleType(v) {
|
|
|
197
197
|
// src/cli/main.ts
|
|
198
198
|
var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
199
199
|
async function main(args = process.argv) {
|
|
200
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.8.0-beta.
|
|
200
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.8.0-beta.5").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
201
201
|
input: {
|
|
202
202
|
alias: "i",
|
|
203
203
|
describe: "Input file",
|
package/build/esm/index.js
CHANGED
|
@@ -197,7 +197,7 @@ function isSimpleType(v) {
|
|
|
197
197
|
// src/cli/main.ts
|
|
198
198
|
var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
199
199
|
async function main(args = process.argv) {
|
|
200
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.8.0-beta.
|
|
200
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.8.0-beta.5").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
201
201
|
input: {
|
|
202
202
|
alias: "i",
|
|
203
203
|
describe: "Input file",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/maker",
|
|
3
|
-
"version": "0.8.0-beta.
|
|
3
|
+
"version": "0.8.0-beta.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"tiny-invariant": "^1.3.3",
|
|
23
23
|
"ts-node": "^10.9.2",
|
|
24
24
|
"yargs": "^17.7.2",
|
|
25
|
-
"@osdk/api": "~2.0.0-beta.
|
|
25
|
+
"@osdk/api": "~2.0.0-beta.9"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/yargs": "^17.0.32",
|
|
29
29
|
"typescript": "^5.5.4",
|
|
30
30
|
"vitest": "^2.0.4",
|
|
31
|
-
"@osdk/internal.foundry.core": "~0.2.0-beta.
|
|
32
|
-
"@osdk/client.unstable": "~2.0.0-beta.
|
|
31
|
+
"@osdk/internal.foundry.core": "~0.2.0-beta.6",
|
|
32
|
+
"@osdk/client.unstable": "~2.0.0-beta.9",
|
|
33
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
33
34
|
"@osdk/monorepo.tsup": "~0.0.0",
|
|
34
|
-
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
35
|
-
"@osdk/monorepo.api-extractor": "~0.0.0"
|
|
35
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|