Skip to content

Commit

Permalink
v0.26.1 (#407)
Browse files Browse the repository at this point in the history
## Fixes
- Do not try and cache Studio's Virtual modules. (#406)
  • Loading branch information
tmeyer2115 authored Oct 11, 2023
1 parent b68eda0 commit 0b7c5d6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/studio-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yext/studio-plugin",
"version": "0.26.0",
"version": "0.26.1",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/studio-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yext/studio-ui",
"version": "0.26.0",
"version": "0.26.1",
"types": "./lib/src/index.d.ts",
"main": "./lib/src/index.js",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions packages/studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yext/studio",
"version": "0.26.0",
"version": "0.26.1",
"types": "./lib/types.d.ts",
"type": "module",
"bin": {
Expand All @@ -14,8 +14,8 @@
},
"dependencies": {
"@vitejs/plugin-react": "^4.0.4",
"@yext/studio-plugin": "0.26.0",
"@yext/studio-ui": "0.26.0",
"@yext/studio-plugin": "0.26.1",
"@yext/studio-ui": "0.26.1",
"autoprefixer": "^10.4.14",
"cac": "^6.7.14",
"cross-env": "^7.0.3",
Expand Down
3 changes: 3 additions & 0 deletions packages/studio/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@ export default defineConfig((args: ConfigEnv): UserConfig => {
css: {
postcss: __dirname,
},
optimizeDeps: {
exclude: ["virtual_yext-studio", "virtual_yext-studio-git-data"],
},
};
});

0 comments on commit 0b7c5d6

Please sign in to comment.