Skip to content

Commit b10ef35

Browse files
Version Packages (#2092)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0f30080 commit b10ef35

File tree

10 files changed

+61
-45
lines changed

10 files changed

+61
-45
lines changed

.changeset/stale-clocks-argue.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

examples/next/faustwp-getting-started/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
},
1212
"dependencies": {
1313
"@apollo/client": "^3.10.4",
14-
"@faustwp/cli": "^3.2.1",
15-
"@faustwp/core": "^3.2.1",
14+
"@faustwp/cli": "^3.2.2",
15+
"@faustwp/core": "^3.2.2",
1616
"@wordpress/base-styles": "^5.10.0",
1717
"@wordpress/block-library": "^9.10.0",
1818
"classnames": "^2.5.1",

packages/block-editor-utils/CHANGELOG.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/block-editor-utils
22

3+
## 0.3.2
4+
5+
### Patch Changes
6+
7+
- f4c0abb: chore: Update various babel packages.
8+
39
## 0.3.1
410

511
### Patch Changes
@@ -24,15 +30,15 @@
2430
// Component.js
2531

2632
Component.config = {
27-
name: 'CreateBlockBlockB',
28-
editorFields: {
29-
textArea: {
30-
type: 'string',
31-
label: 'My Message',
32-
location: 'editor',
33-
control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor
34-
},
35-
},
33+
name: 'CreateBlockBlockB',
34+
editorFields: {
35+
textArea: {
36+
type: 'string',
37+
label: 'My Message',
38+
location: 'editor',
39+
control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor
40+
},
41+
},
3642
};
3743
```
3844

@@ -66,9 +72,9 @@
6672

6773
```js
6874
<div
69-
style={styles}
70-
className="rich-text"
71-
dangerouslySetInnerHTML={{ __html: attributes.richText }}
75+
style={styles}
76+
className="rich-text"
77+
dangerouslySetInnerHTML={{ __html: attributes.richText }}
7278
/>
7379
```
7480

@@ -119,9 +125,9 @@
119125
import save from './save';
120126

121127
registerFaustBlock(MyFirstBlock, {
122-
blockJson: metadata,
123-
editFn: Edit,
124-
saveFn: save,
128+
blockJson: metadata,
129+
editFn: Edit,
130+
saveFn: save,
125131
});
126132
```
127133

packages/block-editor-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/block-editor-utils",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Faust Block Editor Utils Package",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

packages/blocks/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/blocks
22

3+
## 6.1.1
4+
5+
### Patch Changes
6+
7+
- f4c0abb: chore: Update various babel packages.
8+
39
## 6.1.0
410

511
### Minor Changes

packages/blocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/blocks",
3-
"version": "6.1.0",
3+
"version": "6.1.1",
44
"description": "Faust Blocks",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

packages/faustwp-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/cli
22

3+
## 3.2.2
4+
5+
### Patch Changes
6+
7+
- f4c0abb: chore: Update various babel packages.
8+
39
## 3.2.1
410

511
### Patch Changes

packages/faustwp-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/cli",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"description": "This modules provides a CLI to develop, build, and serve your Faust apps",
55
"main": "dist/index.js",
66
"type": "module",

packages/faustwp-core/CHANGELOG.md

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @faustwp/core
22

3+
## 3.2.2
4+
5+
### Patch Changes
6+
7+
- f4c0abb: chore: Update various babel packages.
8+
39
## 3.2.1
410

511
### Patch Changes
@@ -24,11 +30,11 @@
2430
export default function Sitemap() {}
2531

2632
export function getServerSideProps(ctx) {
27-
return getSitemapProps(ctx, {
28-
sitemapIndexPath: '/sitemap_index.xml', // RankMath changes the default sitemap path to this
29-
frontendUrl: process.env.NEXT_PUBLIC_SITE_URL,
30-
sitemapPathsToIgnore: ['/wp-sitemap-users-*'],
31-
});
33+
return getSitemapProps(ctx, {
34+
sitemapIndexPath: '/sitemap_index.xml', // RankMath changes the default sitemap path to this
35+
frontendUrl: process.env.NEXT_PUBLIC_SITE_URL,
36+
sitemapPathsToIgnore: ['/wp-sitemap-users-*'],
37+
});
3238
}
3339
```
3440

@@ -132,7 +138,7 @@
132138
133139
```jsx
134140
<ToolbarItem onKeyDown={handleKeyDown} onClick={handleClick}>
135-
Log Out
141+
Log Out
136142
</ToolbarItem>
137143
```
138144
@@ -238,18 +244,18 @@
238244
import { FaustPage } from '@faustwp/core';
239245

240246
type GetPageData = {
241-
generalSettings: {
242-
title: string;
243-
};
247+
generalSettings: {
248+
title: string;
249+
};
244250
};
245251

246252
type PageProps = {
247-
myProp: string;
253+
myProp: string;
248254
};
249255

250256
const Page: FaustPage<GetPageData, PageProps> = (props) => {
251-
const { myProp, data } = props;
252-
return <></>;
257+
const { myProp, data } = props;
258+
return <></>;
253259
};
254260
```
255261
@@ -318,9 +324,9 @@
318324
export default function Sitemap() {}
319325

320326
export function getServerSideProps(context) {
321-
return getSitemapProps(context, {
322-
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
323-
});
327+
return getSitemapProps(context, {
328+
frontendUrl: process.env.FRONTEND_URL, // Set the FRONTEND_URL as an env var
329+
});
324330
}
325331
```
326332
@@ -350,7 +356,7 @@
350356
import { FaustHooks, FaustPlugin } from '@faustwp/core';
351357

352358
export class MyPlugin implements FaustPlugin {
353-
apply(hooks: FaustHooks) {}
359+
apply(hooks: FaustHooks) {}
354360
}
355361
```
356362

packages/faustwp-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faustwp/core",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"description": "Faust is a framework that aims to make headless WordPress as streamlined as classic WordPress for both developers and publishers",
55
"main": "dist/cjs/index.js",
66
"module": "dist/mjs/index.js",

0 commit comments

Comments
 (0)