Skip to content

Commit

Permalink
Merge pull request #18412 from storybookjs/fix/pnp-compat-2
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Jun 12, 2022
1 parent 85280ea commit dd4d67a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -277,9 +277,9 @@ jobs:
- run:
name: run e2e tests cra
command: yarn test:e2e-framework --pnp cra
- run:
name: run e2e tests vue
command: yarn test:e2e-framework --pnp sfcVue
# - run:
# name: run e2e tests vue
# command: yarn test:e2e-framework --pnp sfcVue
- run:
name: prep artifacts
when: always
Expand Down
2 changes: 1 addition & 1 deletion lib/core-common/src/presets.ts
Expand Up @@ -97,7 +97,7 @@ export const resolveAddonName = (
const managerFile = safeResolve(`${path}/manager`);
const registerFile = safeResolve(`${path}/register`) || safeResolve(`${path}/register-panel`);
const previewFile = safeResolve(`${path}/preview`);
const presetFile = safeResolve(`${path}/preset`);
const presetFile = r(`${path}/preset`);

if (!(managerFile || previewFile) && presetFile) {
return {
Expand Down
2 changes: 1 addition & 1 deletion lib/router/package.json
Expand Up @@ -42,6 +42,7 @@
"dependencies": {
"@storybook/client-logger": "6.5.8",
"core-js": "^3.8.2",
"qs": "^6.10.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
Expand All @@ -50,7 +51,6 @@
"history": "5.0.0",
"lodash": "^4.17.21",
"memoizerific": "^1.11.3",
"qs": "^6.10.0",
"react-router": "6.0.2",
"react-router-dom": "6.0.2",
"ts-dedent": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/package.json
Expand Up @@ -50,6 +50,7 @@
"@storybook/semver": "^7.3.2",
"@storybook/theming": "6.5.8",
"core-js": "^3.8.2",
"qs": "^6.10.0",
"regenerator-runtime": "^0.13.7",
"resolve-from": "^5.0.0"
},
Expand All @@ -67,7 +68,6 @@
"markdown-to-jsx": "^7.1.3",
"memoizerific": "^1.11.3",
"polished": "^4.2.2",
"qs": "^6.10.0",
"react-draggable": "^4.4.3",
"react-helmet-async": "^1.0.7",
"react-sizeme": "^3.0.1",
Expand Down

0 comments on commit dd4d67a

Please sign in to comment.