Skip to content

Commit

Permalink
v0.0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Razon committed Jan 11, 2024
1 parent de7de2e commit d9a32fa
Show file tree
Hide file tree
Showing 12 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.59"
"version": "0.0.60"
}
4 changes: 2 additions & 2 deletions packages/cli-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/cli-common",
"version": "0.0.59",
"version": "0.0.60",
"description": "Common library for the Preevy CLI and plugins",
"type": "module",
"main": "dist/index.js",
Expand All @@ -13,7 +13,7 @@
"license": "Apache-2.0",
"dependencies": {
"@oclif/core": "^3.15.1",
"@preevy/core": "0.0.59",
"@preevy/core": "0.0.60",
"chalk": "^4.1.2",
"iter-tools-es": "^7.5.3",
"lodash-es": "^4.17.21"
Expand Down
44 changes: 22 additions & 22 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g preevy
$ preevy COMMAND
running command...
$ preevy (--version)
preevy/0.0.59 darwin-arm64 node-v18.12.1
preevy/0.0.60 darwin-arm64 node-v18.19.0
$ preevy --help [COMMAND]
USAGE
$ preevy COMMAND
Expand Down Expand Up @@ -121,7 +121,7 @@ FLAG DESCRIPTIONS
If not specified, will detect from the current Git context
```

_See code: [src/commands/down.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/down.ts)_
_See code: [src/commands/down.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/down.ts)_

## `preevy help [COMMANDS]`

Expand All @@ -141,7 +141,7 @@ DESCRIPTION
Display help for preevy.
```

_See code: [src/commands/help.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/help.ts)_
_See code: [src/commands/help.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/help.ts)_

## `preevy init [PROFILE-ALIAS]`

Expand Down Expand Up @@ -170,7 +170,7 @@ DESCRIPTION
Initialize or import a new profile
```

_See code: [src/commands/init.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/init.ts)_

## `preevy login`

Expand Down Expand Up @@ -198,7 +198,7 @@ DESCRIPTION
Login to the Livecycle SaaS
```

_See code: [src/commands/login.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/login.ts)_
_See code: [src/commands/login.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/login.ts)_

## `preevy logs [SERVICES]`

Expand Down Expand Up @@ -264,7 +264,7 @@ FLAG DESCRIPTIONS
If not specified, will detect from the current Git context
```

_See code: [src/commands/logs.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/logs.ts)_
_See code: [src/commands/logs.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/logs.ts)_

## `preevy ls`

Expand Down Expand Up @@ -326,7 +326,7 @@ DESCRIPTION
List preview environments
```

_See code: [src/commands/ls.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/ls.ts)_
_See code: [src/commands/ls.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/ls.ts)_

## `preevy profile config update`

Expand Down Expand Up @@ -391,7 +391,7 @@ DESCRIPTION
View and update profile configuration
```

_See code: [src/commands/profile/config/update.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/config/update.ts)_
_See code: [src/commands/profile/config/update.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/config/update.ts)_

## `preevy profile config view`

Expand All @@ -418,7 +418,7 @@ DESCRIPTION
View profile configuration
```

_See code: [src/commands/profile/config/view.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/config/view.ts)_
_See code: [src/commands/profile/config/view.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/config/view.ts)_

## `preevy profile cp`

Expand Down Expand Up @@ -451,7 +451,7 @@ DESCRIPTION
Copy a profile
```

_See code: [src/commands/profile/cp.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/cp.ts)_
_See code: [src/commands/profile/cp.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/cp.ts)_

## `preevy profile create NAME URL`

Expand Down Expand Up @@ -515,7 +515,7 @@ DESCRIPTION
Create a new profile
```

_See code: [src/commands/profile/create.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/create.ts)_
_See code: [src/commands/profile/create.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/create.ts)_

## `preevy profile current`

Expand All @@ -542,7 +542,7 @@ DESCRIPTION
Display current profile in use
```

_See code: [src/commands/profile/current.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/current.ts)_
_See code: [src/commands/profile/current.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/current.ts)_

## `preevy profile import LOCATION`

Expand Down Expand Up @@ -572,7 +572,7 @@ DESCRIPTION
Import an existing profile
```

_See code: [src/commands/profile/import.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/import.ts)_
_See code: [src/commands/profile/import.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/import.ts)_

## `preevy profile key [TYPE]`

Expand Down Expand Up @@ -602,7 +602,7 @@ DESCRIPTION
Show profile key
```

_See code: [src/commands/profile/key.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/key.ts)_
_See code: [src/commands/profile/key.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/key.ts)_

## `preevy profile link`

Expand Down Expand Up @@ -631,7 +631,7 @@ DESCRIPTION
Link the profile to the logged in user's organization
```

_See code: [src/commands/profile/link.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/link.ts)_
_See code: [src/commands/profile/link.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/link.ts)_

## `preevy profile ls`

Expand Down Expand Up @@ -670,7 +670,7 @@ DESCRIPTION
Lists profiles
```

_See code: [src/commands/profile/ls.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/ls.ts)_
_See code: [src/commands/profile/ls.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/ls.ts)_

## `preevy profile rm NAME`

Expand Down Expand Up @@ -701,7 +701,7 @@ DESCRIPTION
Remove a profile
```

_See code: [src/commands/profile/rm.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/rm.ts)_
_See code: [src/commands/profile/rm.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/rm.ts)_

## `preevy profile use NAME`

Expand All @@ -727,7 +727,7 @@ DESCRIPTION
Set current profile
```

_See code: [src/commands/profile/use.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/profile/use.ts)_
_See code: [src/commands/profile/use.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/profile/use.ts)_

## `preevy purge`

Expand Down Expand Up @@ -782,7 +782,7 @@ DESCRIPTION
Delete all cloud provider machines and potentially other resources
```

_See code: [src/commands/purge.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/purge.ts)_
_See code: [src/commands/purge.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/purge.ts)_

## `preevy ssh ENVID`

Expand Down Expand Up @@ -953,7 +953,7 @@ FLAG DESCRIPTIONS
If not specified, will detect from the current Git context
```

_See code: [src/commands/up.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/up.ts)_
_See code: [src/commands/up.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/up.ts)_

## `preevy urls [SERVICE] [PORT]`

Expand Down Expand Up @@ -1014,7 +1014,7 @@ FLAG DESCRIPTIONS
If not specified, will detect from the current Git context
```

_See code: [src/commands/urls.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/urls.ts)_
_See code: [src/commands/urls.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/urls.ts)_

## `preevy version`

Expand All @@ -1038,5 +1038,5 @@ DESCRIPTION
Show Preevy version
```

_See code: [src/commands/version.ts](https://github.com/livecycle/preevy/blob/v0.0.59/src/commands/version.ts)_
_See code: [src/commands/version.ts](https://github.com/livecycle/preevy/blob/v0.0.60/src/commands/version.ts)_
<!-- commandsstop -->
20 changes: 10 additions & 10 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "preevy",
"version": "0.0.59",
"version": "0.0.60",
"description": "Quickly deploy preview environments to the cloud!",
"author": "Livecycle",
"type": "module",
Expand All @@ -26,15 +26,15 @@
"@inquirer/prompts": "^3.3.0",
"@oclif/core": "^3.15.1",
"@oclif/plugin-help": "^5",
"@preevy/cli-common": "0.0.59",
"@preevy/common": "0.0.59",
"@preevy/compose-tunnel-agent": "0.0.59",
"@preevy/core": "0.0.59",
"@preevy/driver-azure": "0.0.59",
"@preevy/driver-gce": "0.0.59",
"@preevy/driver-kube-pod": "0.0.59",
"@preevy/driver-lightsail": "0.0.59",
"@preevy/plugin-github": "0.0.59",
"@preevy/cli-common": "0.0.60",
"@preevy/common": "0.0.60",
"@preevy/compose-tunnel-agent": "0.0.60",
"@preevy/core": "0.0.60",
"@preevy/driver-azure": "0.0.60",
"@preevy/driver-gce": "0.0.60",
"@preevy/driver-kube-pod": "0.0.60",
"@preevy/driver-lightsail": "0.0.60",
"@preevy/plugin-github": "0.0.60",
"disposablestack": "^1.1.2",
"inquirer-autocomplete-standalone": "^0.8.1",
"iter-tools-es": "^7.5.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/common",
"version": "0.0.59",
"version": "0.0.60",
"description": "",
"type": "module",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/compose-tunnel-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/compose-tunnel-agent",
"version": "0.0.59",
"version": "0.0.60",
"description": "",
"main": "out/index.mjs",
"exports": {
Expand All @@ -19,7 +19,7 @@
"@fastify/cors": "^8.3.0",
"@fastify/request-context": "^5.0.0",
"@fastify/websocket": "^8.2.0",
"@preevy/common": "0.0.59",
"@preevy/common": "0.0.60",
"dockerode": "^3.3.4",
"fastify": "^4.22.2",
"fastify-type-provider-zod": "^1.1.9",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/core",
"version": "0.0.59",
"version": "0.0.60",
"description": "Core functionality for Preevy",
"type": "module",
"exports": {
Expand All @@ -13,8 +13,8 @@
"license": "Apache-2.0",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@preevy/common": "0.0.59",
"@preevy/compose-tunnel-agent": "0.0.59",
"@preevy/common": "0.0.60",
"@preevy/compose-tunnel-agent": "0.0.60",
"chalk": "^4.1.2",
"fast-safe-stringify": "^2.1.1",
"is-stream": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-azure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/driver-azure",
"version": "0.0.59",
"version": "0.0.60",
"description": "Microsoft Azure Virtual Machine for Preevy",
"type": "module",
"exports": {
Expand All @@ -22,7 +22,7 @@
"@azure/logger": "^1.0.4",
"@inquirer/prompts": "^3.3.0",
"@oclif/core": "^3.15.1",
"@preevy/core": "0.0.59",
"@preevy/core": "0.0.60",
"inquirer-autocomplete-standalone": "^0.8.1",
"iter-tools-es": "^7.5.3",
"lodash-es": "^4.17.21"
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-gce/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/driver-gce",
"version": "0.0.59",
"version": "0.0.60",
"description": "Google Compute Engine driver for Preevy",
"type": "module",
"exports": {
Expand All @@ -17,7 +17,7 @@
"@google-cloud/storage": "^6.9.5",
"@inquirer/prompts": "^3.3.0",
"@oclif/core": "^3.15.1",
"@preevy/core": "0.0.59",
"@preevy/core": "0.0.60",
"google-auth-library": "^8.7.0",
"google-gax": "^4.0.5",
"inquirer-autocomplete-standalone": "^0.8.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/driver-kube-pod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/driver-kube-pod",
"version": "0.0.59",
"version": "0.0.60",
"description": "Kubernetes single Pod driver for Preevy",
"exports": {
".": "./dist/index.js"
Expand All @@ -16,8 +16,8 @@
"@inquirer/prompts": "^3.3.0",
"@kubernetes/client-node": "^0.18.1",
"@oclif/core": "^3.15.1",
"@preevy/common": "0.0.59",
"@preevy/core": "0.0.59",
"@preevy/common": "0.0.60",
"@preevy/core": "0.0.60",
"fast-safe-stringify": "^2.1.1",
"is-stream": "^2.0.1",
"iter-tools-es": "^7.5.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-lightsail/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/driver-lightsail",
"version": "0.0.59",
"version": "0.0.60",
"description": "AWS Lightsail driver for Preevy",
"exports": {
".": "./dist/index.js"
Expand All @@ -18,7 +18,7 @@
"@aws-sdk/client-sts": "^3.289.0",
"@aws-sdk/util-waiter": "^3.271.0",
"@oclif/core": "^3.15.1",
"@preevy/core": "0.0.59",
"@preevy/core": "0.0.60",
"inquirer-autocomplete-standalone": "^0.8.1",
"iter-tools-es": "^7.5.3",
"lodash-es": "^4.17.21"
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-github/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@preevy/plugin-github",
"version": "0.0.59",
"version": "0.0.60",
"description": "Preevy plugin for GitHub",
"exports": {
".": "./dist/index.js"
Expand All @@ -12,8 +12,8 @@
"license": "Apache-2.0",
"dependencies": {
"@oclif/core": "^3.15.1",
"@preevy/cli-common": "0.0.59",
"@preevy/core": "0.0.59",
"@preevy/cli-common": "0.0.60",
"@preevy/core": "0.0.60",
"lodash-es": "^4.17.21",
"nunjucks": "^3.2.4",
"octokit": "^3.1.1"
Expand Down

0 comments on commit d9a32fa

Please sign in to comment.