Skip to content

Commit

Permalink
v6.3.3 Fixed package and package-lock for all the packages (#975)
Browse files Browse the repository at this point in the history
* Fixed package and package-lock for all the packages

* remove not valid links from readme

* add user to commit

---------

Co-authored-by: saroy <saroy@twilio.com>
  • Loading branch information
aishwarya-tw and sanjeet-tw committed Apr 8, 2024
1 parent 52254f7 commit f15ec27
Show file tree
Hide file tree
Showing 24 changed files with 15,183 additions and 6,963 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/~reusable_public_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
SLACK_MESSAGE: ":ship_it_parrot: Releasing new public *version* of `flex-plugin-builder`"
MSG_MINIMAL: actions url
- name: Publish Version
run: npm run publish:${{ inputs.TAG }} ${{ inputs.VERSION }}
run: |
git config user.name github-actions
git config user.email noreply@github.com
npm run publish:${{ inputs.TAG }} ${{ inputs.VERSION }}
env:
VERSION: ${{ inputs.VERSION }}
BRANCH: ${{ inputs.BRANCH }}
Expand All @@ -84,10 +87,7 @@ jobs:
id: commit_version
run: |
git checkout -b bump-version-"$VERSION_NUMBER"
git config user.name github-actions
git config user.email noreply@github.com
git add .
git diff --staged --quiet && (echo "pushVersion=false" >> $GITHUB_OUTPUT) || (git commit -m "Updating version" --no-verify && git push origin bump-version-"$VERSION_NUMBER" --no-verify && echo "pushVersion=true" >> $GITHUB_OUTPUT)
(echo "pushVersion=false" >> $GITHUB_OUTPUT) || (git commit -m "Updating version" --no-verify && git push origin bump-version-"$VERSION_NUMBER" --no-verify && echo "pushVersion=true" >> $GITHUB_OUTPUT)
env:
VERSION_NUMBER: ${{ steps.publicVersion.outputs.version }}
- name: Create PR for version
Expand All @@ -100,6 +100,5 @@ jobs:
if: steps.commit_version.outputs.pushVersion == 'true'
run: |
gh pr review --approve
gh pr merge --auto --merge
env:
GITHUB_TOKEN: ${{ secrets.G_TOKEN }}
GITHUB_TOKEN: ${{ secrets.G_TOKEN }}
2 changes: 1 addition & 1 deletion bin/publish
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ if [ "${tag}" == "public" ] ; then
./node_modules/.bin/lerna publish \
--force-publish="*" \
--no-push \
--no-git-tag-version \
--skip-npm \
--exact \
--yes \
"${bump}"
Expand Down
7,292 changes: 5,159 additions & 2,133 deletions packages/create-flex-plugin/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/create-flex-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@twilio/create-flex-plugin",
"version": "6.3.2",
"version": "6.3.3",
"description": "Toolkit to create a new Twilio Flex plugin",
"keywords": [
"flex",
Expand Down Expand Up @@ -42,14 +42,14 @@
"test:watch": "cd ../.. && jest packages/create-flex-plugin --watch --color"
},
"dependencies": {
"@twilio/flex-dev-utils": "6.3.2",
"@twilio/flex-dev-utils": "6.3.3",
"esm": "^3.2.25",
"tmp": "^0.2.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@twilio/flex-plugin": "6.3.2",
"@twilio/flex-plugin-scripts": "6.3.2",
"@twilio/flex-plugin": "6.3.3",
"@twilio/flex-plugin-scripts": "6.3.3",
"@twilio/flex-ui": "^1",
"@types/tmp": "^0.2.1",
"@types/yargs": "^16.0.4"
Expand Down
14 changes: 7 additions & 7 deletions packages/flex-dev-utils/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/flex-dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@twilio/flex-dev-utils",
"version": "6.3.2",
"version": "6.3.3",
"description": "Common development utility for creating a Flex plugin",
"keywords": [
"flex",
Expand Down Expand Up @@ -34,8 +34,8 @@
},
"dependencies": {
"@k88/pipe-compose": "^2.5.0",
"@twilio/flex-plugins-utils-env": "6.3.2",
"@twilio/flex-plugins-utils-exception": "6.3.2",
"@twilio/flex-plugins-utils-env": "6.3.3",
"@twilio/flex-plugins-utils-exception": "6.3.3",
"address": "^1.1.2",
"app-module-path": "^2.2.0",
"axios": "^0.24.0",
Expand Down
Loading

0 comments on commit f15ec27

Please sign in to comment.