diff --git a/README.md b/README.md index f339dd7..2516caa 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,6 @@ Sage is a productivity-driven WordPress starter theme with a modern development - Clean, efficient theme templating utilizing [Laravel Blade](https://laravel.com/docs/master/blade). - Lightning fast frontend development workflow powered by [Bud](https://budjs.netlify.app/). - Out of the box support for [TailwindCSS](https://tailwindcss.com/). -- A clean starting point for theme styles using [Sass](https://sass-lang.com/). - -See a working example at [roots-example-project.com](https://roots-example-project.com/). ## Requirements @@ -69,7 +66,7 @@ Make sure all dependencies have been installed before moving on: - [WordPress](https://wordpress.org/) >= 5.4 - [PHP](https://secure.php.net/manual/en/install.php) >= 7.3.0 (with [`php-mbstring`](https://secure.php.net/manual/en/book.mbstring.php) enabled) - [Composer](https://getcomposer.org/download/) -- [Node.js](http://nodejs.org/) >= 12.14.0 +- [Node.js](http://nodejs.org/) >= 16 - [Yarn](https://yarnpkg.com/en/docs/install) ## Theme installation @@ -121,7 +118,7 @@ themes/your-theme-name/ # → Root of your Sage based theme │ ├── styles/ # → Theme stylesheets │ └── views/ # → Theme templates │ ├── components/ # → Component templates -│ ├── form/ # → Form templates +│ ├── forms/ # → Form templates │ ├── layouts/ # → Base templates │ └── partials/ # → Partial templates ├── screenshot.png # → Theme screenshot for WP admin diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 8a7f327..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: '3' - -services: - db: - image: mysql:5.7 - volumes: - - db_data:/var/lib/mysql - restart: always - environment: - MYSQL_ROOT_PASSWORD: wordpress - MYSQL_DATABASE: wordpress - MYSQL_USER: wordpress - MYSQL_PASSWORD: wordpress - - wordpress: - depends_on: - - db - image: wordpress:latest - ports: - - '8000:80' - restart: always - environment: - WORDPRESS_DB_HOST: db:3306 - WORDPRESS_DB_USER: wordpress - WORDPRESS_DB_PASSWORD: wordpress - working_dir: /var/www/html - volumes: - - ./:/var/www/html/wp-content/themes/sage - -volumes: - db_data: diff --git a/package.json b/package.json index 07575bd..97ac688 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "@roots/sage": "5.0.0-next.16", "@tailwindcss/typography": "^0.4.1", "@wordpress/browserslist-config": "4.1.0", + "autoprefixer": "^10.4.0", "eslint": "7.32.0", "postcss": "8.4.1", "postcss-import": "14.0.2",