Skip to content

2025 update #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .env-example

This file was deleted.

3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"es6": true
},
"parserOptions": {
"ecmaVersion": "latest"
"ecmaVersion": "latest",
"sourceType": "module"
}
}
7 changes: 7 additions & 0 deletions .wp-env.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"mappings": {
"wp-content/mu-plugins": "./wp-content/mu-plugins",
"wp-content/plugins": "./wp-content/plugins",
"wp-content/themes": "./wp-content/themes"
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Welcome!
This template contains all you need to start the next great First+Third project. Click **Use this template** and start hacking away!

## What's included

- Support for modern CSS and JS development syntax with [PostCSS](https://postcss.org/) and [ESBuild](https://esbuild.github.io/).
- A no-nonsense, CLI-exclusive setup and build process.
- [Docker](https://www.docker.com/) integration to keep local dependencies tight-knit.
Expand Down Expand Up @@ -58,7 +59,6 @@ There are a few requirements to develop a new theme or contribute back to the pr
> During the `initialize` step, you will be asked for ACF credentials. Use the license key for the `username` and the website URL for the `password`.
> If you don't know the final production URL for the project, use https://firstandthird.com/ as the password.


Several things are handled during this step:

- `.env` is created based on the example file.
Expand Down
15 changes: 2 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,12 @@
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type":"composer",
"url":"https://connect.advancedcustomfields.com"
}
],
"require": {
"php": ">=8.0",
"squizlabs/php_codesniffer": "^3.7",
"wpackagist-plugin/svg-support": "dev-trunk",
"wpackagist-plugin/wordpress-seo": "dev-trunk",
"wpackagist-plugin/redirection": "dev-trunk",
"wpackagist-plugin/acf-extended": "dev-trunk",
"wpengine/advanced-custom-fields-pro": "^6.0"
"wpackagist-plugin/svg-support": "dev-trunk"
},
"require-dev": {
"automattic/vipwpcs": "^2.3",
Expand All @@ -42,10 +34,7 @@
"installer-paths": {
"wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/acf-extended",
"wpackagist-plugin/svg-support",
"wpackagist-plugin/wordpress-seo",
"wpengine/advanced-custom-fields-pro"
"wpackagist-plugin/svg-support"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
Expand Down
Loading
Loading