wp-block-styles 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,6 +20,14 @@ yarn add wp-block-styles
|
|
|
20
20
|
pnpm add wp-block-styles
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
## Learn More
|
|
24
|
+
|
|
25
|
+
This package emerged from years of solving the same styling gaps when pulling WordPress content via REST API.
|
|
26
|
+
|
|
27
|
+
- **[Styling the WordPress REST API in Next.js, React, and Beyond](https://connorontheweb.com/styling-wordpress-rest-api-headless-wp-block-styles)** — Launch post explaining the problem and why wp-block-styles exists (March 2026)
|
|
28
|
+
- **[Building a head for the WordPress REST API with Nuxt JS](https://connorontheweb.com/building-a-head-for-the-wordpress-rest-api-with-nuxt-js)** — Original approach to the styling problem (November 2021)
|
|
29
|
+
- **[Interactive demo with live examples](https://connorontheweb.com/packages/wp-block-styles)** — See every block type rendered with wp-block-styles
|
|
30
|
+
|
|
23
31
|
## Usage
|
|
24
32
|
|
|
25
33
|
### Global (recommended for most projects)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wp-block-styles",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "Comprehensive CSS styles for WordPress Gutenberg block classes rendered via the headless WP REST API. Zero dependencies, framework agnostic.",
|
|
5
5
|
"style": "index.css",
|
|
6
6
|
"main": "index.css",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"bugs": {
|
|
40
40
|
"url": "https://github.com/connorontheweb/wp-block-styles/issues"
|
|
41
41
|
},
|
|
42
|
-
"homepage": "https://
|
|
42
|
+
"homepage": "https://connorontheweb.com/packages/wp-block-styles",
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"clean-css-cli": "^5.6.3"
|
|
45
45
|
}
|