From ae65a4a19f854284cf5683f0ba74067c3df98534 Mon Sep 17 00:00:00 2001 From: Andrew Goldis Date: Tue, 17 Oct 2023 15:28:51 -0700 Subject: [PATCH] chore: .. --- .github/README.md | 8 ++++---- Dockerfile | 1 + packages/cc-est/package.json | 2 +- packages/cc-est/publish.js | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/README.md b/.github/README.md index 455fa25..ac6c0e2 100644 --- a/.github/README.md +++ b/.github/README.md @@ -256,20 +256,20 @@ npm run test ### Beta channel ```sh -cd packages/cypress-cloud +cd packages/cc-est npm run release -- --preRelease=beta && npm run release:npm -- -t beta ``` ### Latest channel ```sh -cd packages/cypress-cloud +cd packages/cc-est npm run release && npm run release:npm -- -t latest ``` ### Localhost -Publishing from `packages/cypress-cloud`: +Publishing from `packages/cc-est`: ```sh docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio @@ -281,7 +281,7 @@ npm_config_registry=http://localhost:4873 npm run release:npm -- --tag latest Using: ```sh -npm install cypress-cloud --registry http://localhost:4873 +npm install @currents/cc-est --registry http://localhost:4873 --@currents:registry=http://localhost:4873 ``` ## License diff --git a/Dockerfile b/Dockerfile index 501fc35..25da30b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ +# docker run -it --entrypoint /bin/bash -v .:/app cypress-local FROM cypress/included diff --git a/packages/cc-est/package.json b/packages/cc-est/package.json index 5e0d653..d790f0d 100644 --- a/packages/cc-est/package.json +++ b/packages/cc-est/package.json @@ -1,6 +1,6 @@ { "name": "@currents/cc-est", - "version": "2.0.0-beta.1", + "version": "2.0.0", "main": "./dist/index.js", "license": "GPL-3.0-or-later", "engines": { diff --git a/packages/cc-est/publish.js b/packages/cc-est/publish.js index 588371a..f40e0a3 100755 --- a/packages/cc-est/publish.js +++ b/packages/cc-est/publish.js @@ -23,7 +23,7 @@ const newPkg = { ...pkg, main: "./index.js", bin: { - "cypress-cloud": "./bin/cli.js", + "cc-est": "./bin/cli.js", }, files: ["*"], bin: "./bin/cli.js",