Skip to content

Commit

Permalink
fix(beeq-react): wrong paths on package.json (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
endv-bogdanb authored and dgonzalezr committed Aug 20, 2023
1 parent b8d32b4 commit 9aa36a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "https://github.com/Endava/bee-q"
},
"scripts": {
"prestart": "nx run bee-q:generate-icons",
"prestart": "nx run beeq:generate-icons",
"prebuild": "npm run clean:build",
"start": "nx run-many -t start -p beeq --skip-nx-cache",
"build": "run-s build:*",
Expand Down
6 changes: 3 additions & 3 deletions packages/beeq-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.8.0",
"license": "Apache-2.0",
"description": "React specific wrapper for Bee-Q Design System components",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/beeq/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"nx run bee-q:stencil-start --noOpen",
"nx run bee-q:storybook-start-css",
"nx run bee-q:storybook-start"
"nx run beeq:stencil-start --noOpen",
"nx run beeq:storybook-start-css",
"nx run beeq:storybook-start"
],
"parallel": true
}
Expand Down

0 comments on commit 9aa36a6

Please sign in to comment.