Skip to content

Commit

Permalink
Version 0.24.0 (#387)
Browse files Browse the repository at this point in the history
## Features
- Layouts can now be added when adding a page. This new step is at the
very end of the Add Page process (#376).
- The Live Preview Button now opens up to the current active page
instead the PageJS landing page (#379).

## Changes
- Updated icons for Components, Containers, and Layouts (#378)!
- The current selected viewport is now highlighted in the dropdown to
keep track of the current viewport (#386).

## Fixes
- The page settings now correctly refers to scope as "Content Scope"
(#381).
- Buggy deploy button behavior has been fixed (#385).
  • Loading branch information
alextaing authored Sep 26, 2023
1 parent ef54a4e commit 5d4e056
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion bump-versions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ function bumpStudio() {
packageJson.dependencies["@yext/studio-ui"] = newVersion;
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
bumpPackage("studio");
execSync("npm i");
}

function bumpPackage(packageName) {
console.log(`... bumping ${packageName}`);
execSync(`npm version ${newVersion} -w=packages/${packageName}`);
execSync(
`npm version ${newVersion} -w=packages/${packageName} --workspaces-update=false`
);
}

function readJson(filepath) {
Expand Down
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.23.1",
"version": "0.24.0",
"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.23.1",
"version": "0.24.0",
"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.23.1",
"version": "0.24.0",
"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.23.1",
"@yext/studio-ui": "0.23.1",
"@yext/studio-plugin": "0.24.0",
"@yext/studio-ui": "0.24.0",
"autoprefixer": "^10.4.14",
"cac": "^6.7.14",
"cross-env": "^7.0.3",
Expand Down

0 comments on commit 5d4e056

Please sign in to comment.