Skip to content

Commit

Permalink
complete composer and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ipatate committed Oct 30, 2024
1 parent 29ce0a4 commit 2a6622b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 20 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
This plugin give you the ability to use Vite JS directly in
your theme.

You can use this plugin with the starter theme **Press-wind**:
<https://github.com/WP-Performance/press-wind>

## Steps to Use

1. Install the **presswind-helpers** plugin.
2. Install the **Press-wind** theme.
3. Start coding!

## PWVite

- port - default 3000
- port - default 3000
- path - from your theme root
- position front|admin|editor - default front
- is_ts - default false
Expand Down
46 changes: 27 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
{
"name": "wp-performance/press-wind-helpers",
"autoload": {
"psr-4": {
"PressWind\\": "src/"
}
},
"authors": [
{
"name": "faramazpat",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"wp-performance/presswind-assets": "dev-main"
"name": "wp-performance/press-wind-helpers",
"description": "Helpers plugin for use with press-wind theme",
"type": "wordpress-plugin",
"homepage": "https://github.com/WP-Performance/press-wind-helpers",
"keywords": [
"wordpress",
"plugin"
],
"autoload": {
"psr-4": {
"PressWind\\": "src/"
}
},
"authors": [
{
"name": "faramazpat",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.0",
"wp-performance/presswind-assets": "dev-main"
}
}

0 comments on commit 2a6622b

Please sign in to comment.