Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
PR issues fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya committed May 31, 2023
1 parent 4783e33 commit 5716e54
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 28 deletions.
15 changes: 1 addition & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
parameters:
increment:
description: |
"Increment of release. Allowed values `prepatch`, `preminor`, `premajor`, `bump-prerelease`,
"Increment of release. Allowed values `prepatch`, `preminor`, `premajor`,
`alpha->beta`, `beta->rc`, `patch`, `minor`, `major`"
default: "patch"
type: string
Expand Down Expand Up @@ -188,19 +188,6 @@ workflows:
requires:
- release_premajor?

- release_bump-prerelease?:
context: live-connect
type: approval
requires:
- browserstack

- release:
context: live-connect
name: release_bump-prerelease
increment: "bump-prerelease"
requires:
- release_bump-prerelease?

- release_alpha->beta?:
context: live-connect
type: approval
Expand Down
243 changes: 241 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"module": "./dist/index.cjs.mjs",
"types": "./dist/src/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
"import": "./dist/index.cjs.mjs"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -51,8 +51,8 @@
"release:ci:major": "release-it major --ci"
},
"dependencies": {
"live-connect-common": "^2.0.0-alpha-e2ef6b1.0",
"live-connect-handlers": "^2.0.0-alpha-b23ff16.0",
"live-connect-common": "^2.0.0-alpha-c159b0c.0",
"live-connect-handlers": "^2.0.0-alpha-ab6920f.0",
"tiny-hashes": "1.0.1"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 5716e54

Please sign in to comment.