@osdk/maker 0.5.0 → 0.5.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @osdk/maker
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 647a812: Change all internal dependencies to be tilde not caret
8
+ - Updated dependencies [647a812]
9
+ - @osdk/api@1.7.1
10
+
3
11
  ## 0.5.0
4
12
 
5
13
  ### Patch Changes
@@ -147,7 +147,7 @@ function isSimpleType(v) {
147
147
 
148
148
  // src/cli/main.ts
149
149
  async function main(args = process.argv) {
150
- const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.5.0").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
150
+ const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.5.1").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
151
151
  input: {
152
152
  alias: "i",
153
153
  describe: "Input file",
@@ -118,7 +118,7 @@ function isSimpleType(v) {
118
118
 
119
119
  // src/cli/main.ts
120
120
  async function main(args = process.argv) {
121
- const commandLineOpts = await yargs(hideBin(args)).version("0.5.0").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
121
+ const commandLineOpts = await yargs(hideBin(args)).version("0.5.1").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
122
122
  input: {
123
123
  alias: "i",
124
124
  describe: "Input file",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/maker",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,8 +24,8 @@
24
24
  "tiny-invariant": "^1.3.3",
25
25
  "ts-node": "^10.9.2",
26
26
  "yargs": "^17.7.2",
27
- "@osdk/gateway": "^2.2.0",
28
- "@osdk/api": "^1.7.0"
27
+ "@osdk/api": "~1.7.1",
28
+ "@osdk/gateway": "~2.2.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/yargs": "^17.0.32",