diff --git a/lerna.json b/lerna.json index a0aa133..1524239 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "1.0.4", + "version": "1.1.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/example_fast_check/package.json b/packages/example_fast_check/package.json index 86c3272..d2c9f27 100644 --- a/packages/example_fast_check/package.json +++ b/packages/example_fast_check/package.json @@ -1,7 +1,7 @@ { "name": "example-fast-check", "private": true, - "version": "1.0.4", + "version": "1.1.0", "description": "Example usage of reify-ts for fast-checking APIs", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", @@ -9,7 +9,7 @@ "date-fns": "^1.30.1", "fast-check": "^1.5.0", "io-ts": "^1.8.5", - "reify-ts": "^1.0.4", + "reify-ts": "^1.1.0", "ttypescript": "^1.5.7" }, "scripts": { @@ -19,7 +19,9 @@ "all": "yarn ts && yarn test" }, "ava": { - "files": ["build/**/*.{test,it}.js"] + "files": [ + "build/**/*.{test,it}.js" + ] }, "devDependencies": { "ava": "^2.4.0", diff --git a/packages/example_rpc_ts/package.json b/packages/example_rpc_ts/package.json index a6b92b4..22223dc 100644 --- a/packages/example_rpc_ts/package.json +++ b/packages/example_rpc_ts/package.json @@ -1,15 +1,15 @@ { "name": "example-rpc-ts", "private": true, - "version": "1.0.4", + "version": "1.1.0", "description": "Example usage of reify-ts with rpc-ts", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", "dependencies": { "@improbable-eng/grpc-web-node-http-transport": "^0.11.0", "express": "^4.16.4", - "reify-ts": "^1.0.4", - "rpc-ts-validating-codec": "^1.0.4", + "reify-ts": "^1.1.0", + "rpc-ts-validating-codec": "^1.1.0", "rpc_ts": "2.1.0", "ttypescript": "^1.5.7" }, diff --git a/packages/example_safe_json_parse/package.json b/packages/example_safe_json_parse/package.json index 9724338..e02f0c7 100644 --- a/packages/example_safe_json_parse/package.json +++ b/packages/example_safe_json_parse/package.json @@ -2,12 +2,12 @@ "name": "example-safe-json-parse", "private": true, "license": "MIT", - "version": "1.0.4", + "version": "1.1.0", "description": "Example usage of reify-ts", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", "dependencies": { - "reify-ts": "^1.0.4", + "reify-ts": "^1.1.0", "ttypescript": "^1.5.7" }, "devDependencies": { diff --git a/packages/example_webpack/package.json b/packages/example_webpack/package.json index 8e22ff2..003f171 100644 --- a/packages/example_webpack/package.json +++ b/packages/example_webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-webpack", - "version": "1.0.4", + "version": "1.1.0", "description": "Example usage of reify-ts with webpack", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", @@ -11,7 +11,7 @@ "puppeteer": "^1.6.0-next.1532381444032", "react": "^16.8.6", "react-dom": "^16.8.3", - "reify-ts": "^1.0.4", + "reify-ts": "^1.1.0", "ttypescript": "^1.5.7" }, "devDependencies": { @@ -62,7 +62,9 @@ "heroku-postbuild": "yarn web:build" }, "ava": { - "files": ["build/**/__tests__/*.{test,it}.js"] + "files": [ + "build/**/__tests__/*.{test,it}.js" + ] }, "lint-staged": { "{./*,typescript/**/*}.{js,jsx,ts,tsx,css,scss,md,json}": "prettier -l", diff --git a/packages/reify_ts/package.json b/packages/reify_ts/package.json index a74d49c..824e8c0 100644 --- a/packages/reify_ts/package.json +++ b/packages/reify_ts/package.json @@ -1,6 +1,6 @@ { "name": "reify-ts", - "version": "1.0.4", + "version": "1.1.0", "description": "TypeScript runtime type reflection", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", @@ -39,6 +39,8 @@ "reselect": "^4.0.0", "rimraf": "^2.6.2", "rxjs": "^6.4.0", + "source-map": "^0.7.3", + "source-map-support": "^0.5.13", "terminate": "^2.1.2", "tslint": "^5.15.0", "tslint-config-prettier": "^1.13.0", @@ -50,9 +52,7 @@ "typedoc": "^0.14.2", "typedoc-plugin-external-module-name": "^2.0.0", "typelevel-ts": "^0.3.5", - "vue": "^2.6.10", - "source-map": "^0.7.3", - "source-map-support": "^0.5.13" + "vue": "^2.6.10" }, "peerDependencies": { "typescript": ">= 3.4.1" @@ -74,7 +74,9 @@ "doc": "typedoc --options typedoc.js src" }, "ava": { - "files": ["lib/**/__tests__/*.{test,it}.js"] + "files": [ + "lib/**/__tests__/*.{test,it}.js" + ] }, "lint-staged": { "{./*,typescript/**/*}.{js,jsx,ts,tsx,css,scss,md,json}": "prettier -l", diff --git a/packages/rpc_ts_validating_codec/package.json b/packages/rpc_ts_validating_codec/package.json index 56974c7..278d4be 100644 --- a/packages/rpc_ts_validating_codec/package.json +++ b/packages/rpc_ts_validating_codec/package.json @@ -1,6 +1,6 @@ { "name": "rpc-ts-validating-codec", - "version": "1.0.4", + "version": "1.1.0", "description": "Payload validation for rpc_ts with runtime type reflection", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", @@ -11,7 +11,7 @@ "dependencies": { "io-ts": "^1.8.5", "make-error": "^1.3.5", - "reify-ts": "^1.0.4", + "reify-ts": "^1.1.0", "rpc_ts": "^2.0.0" }, "devDependencies": { diff --git a/packages/web_sandbox/package.json b/packages/web_sandbox/package.json index 4505de5..9d42240 100644 --- a/packages/web_sandbox/package.json +++ b/packages/web_sandbox/package.json @@ -1,6 +1,6 @@ { "name": "web-sandbox", - "version": "1.0.4", + "version": "1.1.0", "description": "Web sandbox to try out reify-ts", "repository": "git@github.com:hchauvin/reify-ts.git", "author": "Hadrien Chauvin", @@ -12,7 +12,7 @@ "react": "^16.8.6", "react-codemirror2": "^5.1.0", "react-dom": "^16.8.3", - "reify-ts": "^1.0.4", + "reify-ts": "^1.1.0", "ttypescript": "^1.5.7" }, "devDependencies": { @@ -62,7 +62,9 @@ "doc": "echo 'SKIPPED'" }, "ava": { - "files": ["build/**/__tests__/*.{test,it}.js"] + "files": [ + "build/**/__tests__/*.{test,it}.js" + ] }, "lint-staged": { "{./*,typescript/**/*}.{js,jsx,ts,tsx,css,scss,md,json}": "prettier -l",