Skip to content

Commit

Permalink
fix(deps): missing @stencil/core dependency for framework targets (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dgonzalezr authored Jul 25, 2024
1 parent 114bfb6 commit 4aaa073
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .husky/branch-name.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ where prefix is one of:
${YELLOW}Please, rename your branch to a valid name and try again.${CLEARCOLOR}\\n"

branch_name_check="^(($allowed_branch_names)\/[a-zA-Z0-9\-]+)$"
if [[ ! $local_branch_name =~ $branch_name_check ]]; then
if [[ $local_branch_name != "main" && ! $local_branch_name =~ $branch_name_check ]]; then
echo "$message"
exit 1
fi
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions packages/beeq-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"module": "dist/esm2015/index.js",
"types": "index.d.ts",
"dependencies": {
"@beeq/core": "^1.5.1",
"tslib": "^2.6.2"
"@beeq/core": "^1.6.0",
"tslib": "^2.6.3"
},
"peerDependencies": {
"@angular/common": ">=14.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/beeq-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"module": "./src/index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@beeq/core": "^1.5.1"
"@beeq/core": "^1.6.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"tslib": "^2.6.2"
"tslib": "^2.6.3"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/beeq-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"main": "./src/index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@beeq/core": "^1.5.1",
"tslib": "^2.6.2"
"@beeq/core": "^1.6.0",
"tslib": "^2.6.3"
},
"peerDependencies": {
"vue": ">=3.3.0"
Expand Down
1 change: 1 addition & 0 deletions packages/beeq/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
{
"ignoredDependencies": [
"@stencil/angular-output-target",
"@stencil/core",
"@stencil/react-output-target",
"@stencil/vue-output-target",
"@stencil/sass",
Expand Down
1 change: 1 addition & 0 deletions packages/beeq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"dependencies": {
"@floating-ui/core": "^1.6.3",
"@floating-ui/dom": "^1.6.6",
"@stencil/core": "^4.19.2",
"cally": "^0.7.1"
},
"repository": {
Expand Down

0 comments on commit 4aaa073

Please sign in to comment.