Skip to content

Commit

Permalink
chore: Update dependencies and fix json-schema-faker (#304)
Browse files Browse the repository at this point in the history
* chore: fix json-schema-faker and update deps

* Use TypeScript when generating commands

* chore: locks stuff
  • Loading branch information
XVincentX authored May 16, 2019
1 parent 2fd558a commit 2a430c9
Show file tree
Hide file tree
Showing 6 changed files with 304 additions and 235 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"release": "lerna version prerelease --preid alpha"
},
"devDependencies": {
"@stoplight/types": "^4.0.0",
"@types/chance": "^1.0.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@stoplight/types": "^5.0.0",
"@types/chance": "^1.0.4",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"chance": "^1.0.0",
"jest": "^24.0.0",
"lerna": "^3.0.0",
"lerna": "^3.14.1",
"ts-jest": "^24.0.0",
"tslint": "^5.0.0",
"tslint-config-stoplight": "^1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@oclif/dev-cli": "^1.0.0",
"@oclif/tslint": "^3.0.0",
"@types/chai": "^4.0.0",
"@types/node": "^12.0.0",
"@types/node": "^12.0.2",
"@types/signale": "^1.2.1",
"globby": "^9.0.0",
"ts-node": "^8.0.0",
Expand Down Expand Up @@ -52,8 +52,8 @@
"url": "https://github.com/stoplightio/prism.git"
},
"scripts": {
"prepack": "oclif-dev manifest",
"version": "oclif-dev readme && git add README.md",
"prepack": "node -r tsconfig-paths/register oclif-dev manifest",
"version": "node -r tsconfig-paths/register oclif-dev readme && git add README.md",
"cli": "node -r tsconfig-paths/register bin/run",
"cli:debug": "node --inspect-brk -r tsconfig-paths/register bin/run"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/lodash": "^4.14.123"
"@types/lodash": "^4.14.129"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"node": ">=8"
},
"dependencies": {
"@stoplight/json-schema-faker": "^0.5.0-rc18",
"@stoplight/prism-core": "^3.0.0-alpha.6",
"ajv": "^6.0.0",
"ajv-oai": "^1.0.0",
"axios": "^0.18.0",
"caseless": "^0.12.0",
"json-schema-faker": "stoplightio/json-schema-faker",
"tslib": "^1.9.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-ignore
import * as jsf from 'json-schema-faker';
import * as jsf from '@stoplight/json-schema-faker';
import { cloneDeep } from 'lodash';
import { IExampleGenerator } from './IExampleGenerator';

Expand Down
Loading

0 comments on commit 2a430c9

Please sign in to comment.