@osdk/maker 0.10.0 → 0.10.1
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/cli/main.js +1 -1
- package/build/cjs/index.cjs +1 -1
- package/build/esm/cli/main.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -23,7 +23,7 @@ import { hideBin } from "yargs/helpers";
|
|
|
23
23
|
import { defineOntology } from "../api/defineOntology.js";
|
|
24
24
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
25
25
|
export default async function main(args = process.argv) {
|
|
26
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.10.
|
|
26
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.10.1" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
27
27
|
input: {
|
|
28
28
|
alias: "i",
|
|
29
29
|
describe: "Input file",
|
package/build/cjs/index.cjs
CHANGED
|
@@ -1220,7 +1220,7 @@ function getEntityTypeName(type) {
|
|
|
1220
1220
|
// src/cli/main.ts
|
|
1221
1221
|
var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
1222
1222
|
async function main(args = process.argv) {
|
|
1223
|
-
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.10.
|
|
1223
|
+
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.10.1").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
|
|
1224
1224
|
input: {
|
|
1225
1225
|
alias: "i",
|
|
1226
1226
|
describe: "Input file",
|
package/build/esm/cli/main.js
CHANGED
|
@@ -23,7 +23,7 @@ import { hideBin } from "yargs/helpers";
|
|
|
23
23
|
import { defineOntology } from "../api/defineOntology.js";
|
|
24
24
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
25
25
|
export default async function main(args = process.argv) {
|
|
26
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.10.
|
|
26
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.10.1" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
27
27
|
input: {
|
|
28
28
|
alias: "i",
|
|
29
29
|
describe: "Input file",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/maker",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tiny-invariant": "^1.3.3",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"yargs": "^17.7.2",
|
|
35
|
-
"@osdk/api": "~2.2.
|
|
35
|
+
"@osdk/api": "~2.2.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@osdk/foundry.ontologies": "2.20.0",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"@types/yargs": "^17.0.32",
|
|
41
41
|
"typescript": "~5.5.4",
|
|
42
42
|
"vitest": "^3.0.5",
|
|
43
|
+
"@osdk/client.unstable": "~2.2.1",
|
|
43
44
|
"@osdk/monorepo.api-extractor": "~0.1.0",
|
|
44
|
-
"@osdk/monorepo.tsconfig": "~0.1.0"
|
|
45
|
-
"@osdk/client.unstable": "~2.2.0"
|
|
45
|
+
"@osdk/monorepo.tsconfig": "~0.1.0"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|